--- infoscreen/clientsiderender.h 2009/12/27 18:54:45 523 +++ infoscreen/clientsiderender.h 2010/01/05 14:03:06 524 @@ -2,23 +2,34 @@ #define CLIENTSIDERENDER_H #include +#include + class QGraphicsTextItem; class QGraphicsView; class QGraphicsScene; +class QHttp; + class ClientSideRender : public QWidget { + Q_OBJECT public: ClientSideRender(QWidget* parent); void timerTick(); + void draw(); + + protected: virtual void resizeEvent ( QResizeEvent * event ); private: QGraphicsTextItem *text; QGraphicsView* view ; QGraphicsScene* scene; + QHttp* http; + QMap map; + QString requestedUrl; }; #endif // CLIENTSIDERENDER_H