1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* UNWindowCaptureUtils_win.cpp
*
* Created on: Feb 3, 2009
* Author: julienbachmann
*/
#include "UBWindowCapture.h"
#include "UBDesktopAnnotationController.h"
UBWindowCapture::UBWindowCapture(UBDesktopAnnotationController *parent)
: QObject(parent)
, mParent(parent)
{
// NOOP
}
UBWindowCapture::~UBWindowCapture()
{
// NOOP
}
const QPixmap UBWindowCapture::getCapturedWindow()
{
return mWindowPixmap;
}
int UBWindowCapture::execute()
{
//TODO UB 4.x - Not used for now
return QDialog::Rejected;
}