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.
37 lines
558 B
37 lines
558 B
/*
|
|
* 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;
|
|
}
|
|
|