новые иконки в 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/desktop/UBWindowCapture.h

31 lines
575 B

/*
* UNWindowCaptureHelper.h
*
* Created on: Feb 3, 2009
* Author: julienbachmann
*/
#ifndef UBWINDOWCAPTURE_H_
#define UBWINDOWCAPTURE_H_
#include <QtGui>
class UBDesktopAnnotationController;
class UBWindowCapture : public QObject
{
Q_OBJECT;
public:
UBWindowCapture(UBDesktopAnnotationController *parent = 0);
virtual ~UBWindowCapture();
int execute();
const QPixmap getCapturedWindow();
private:
QPixmap mWindowPixmap;
UBDesktopAnnotationController* mParent;
};
#endif /* UBWINDOWCAPTURE_H_ */