новые иконки в OpenBoard
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OpenBoard/src/gui/UBScreenMirror.h

55 lines
865 B

/*
* UBScreenMirror.h
*
* Created on: Nov 25, 2008
* Author: luc
*/
#ifndef UBSCREENMIRROR_H_
#define UBSCREENMIRROR_H_
#include <QtGui>
class UBScreenMirror : public QWidget
{
Q_OBJECT;
public:
UBScreenMirror(QWidget* parent = 0);
virtual ~UBScreenMirror();
virtual void paintEvent (QPaintEvent * event);
virtual void timerEvent(QTimerEvent *event);
public slots:
void setSourceWidget(QWidget *sourceWidget);
void setSourceRect(const QRect& pRect)
{
mRect = pRect;
mSourceWidget = 0;
}
void start();
void stop();
private:
void grabPixmap();
int mScreenIndex;
QWidget* mSourceWidget;
QRect mRect;
QPixmap mLastPixmap;
long mTimerID;
};
#endif /* UBSCREENMIRROR_H_ */