00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00027 #ifndef GRABBER_H
00028 #define GRABBER_H
00029
00030 #include <qobject.h>
00031 #include <qpixmap.h>
00032
00033 #include <X11/Xlib.h>
00034 #include <X11/Xatom.h>
00035
00036 #include "configuration.h"
00037
00044 class Grabber : public QObject
00045 {
00046 Q_OBJECT
00047 public:
00048
00050 Grabber(QObject *parent= 0, const char *name= 0);
00051
00053 virtual ~Grabber();
00054
00056 QPixmap capture();
00057
00059 void saveFiles();
00060
00061 signals:
00063 void startCapture();
00065 void finishCapture();
00067 void startSave();
00069 void finishSave();
00071 void message(const QString& msg, int type = Configuration::Normal);
00072
00073 private:
00081 QImage drawCaption( const QImage & image );
00082
00088 void saveMain( const QString & fileName );
00089
00095 void saveThumb( const QString & fileName );
00096
00103 void saveImage( const QString & fileName, const QImage& image );
00104
00106 Window findRealWindow( Window w, int depth = 0 );
00107
00108 QPixmap m_snapshot;
00109 };
00110
00111 #endif