dde-dock/frame/item/components/appsnapshot.h
石博文 e0b2be7cb7 add preview widget
Change-Id: Ifd6b9b63cae9c3773a1ea7b1146d27bd60154bd9
2017-05-22 17:17:29 +08:00

31 lines
468 B
C++

#ifndef APPSNAPSHOT_H
#define APPSNAPSHOT_H
#include <QWidget>
#include <QDebug>
#include <QTimer>
class AppSnapshot : public QWidget
{
Q_OBJECT
public:
explicit AppSnapshot(const WId wid, QWidget *parent = 0);
private slots:
void fetchSnapshot();
private:
void paintEvent(QPaintEvent *e);
void resizeEvent(QResizeEvent *e);
private:
const WId m_wid;
QImage m_snapshot;
QTimer *m_fetchSnapshotTimer;
};
#endif // APPSNAPSHOT_H