/* This file is part of the KDE project Copyright (C) 2007 Alessandro Praduroux This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. */ #ifndef FRAMEBUFFER_H #define FRAMEBUFFER_H #include #include #include #include #include class FrameBuffer; /** @author Alessandro Praduroux */ class FrameBuffer : public QObject { Q_OBJECT public: static FrameBuffer* getFrameBuffer(WId id, QObject *parent); virtual ~FrameBuffer(); char * data(); virtual QList modifiedTiles(); virtual int paddedWidth(); virtual int width(); virtual int height(); virtual int depth(); virtual void startMonitor(); virtual void stopMonitor(); virtual void getServerFormat(rfbPixelFormat &format); protected: explicit FrameBuffer(WId id, QObject *parent = 0); WId win; char *fb; QList tiles; }; #endif