mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
2a77f6f012
Signed-off-by: Paulchen-Panther <Paulchen--Panter@gmx.net>
48 lines
932 B
C++
48 lines
932 B
C++
|
|
// Hyperion-X11 includes
|
|
#include "X11Wrapper.h"
|
|
|
|
X11Wrapper::X11Wrapper(int grabInterval, int cropLeft, int cropRight, int cropTop, int cropBottom, int pixelDecimation) :
|
|
_timer(this),
|
|
_grabber(cropLeft, cropRight, cropTop, cropBottom, pixelDecimation)
|
|
{
|
|
_timer.setSingleShot(false);
|
|
_timer.setInterval(grabInterval);
|
|
|
|
// Connect capturing to the timeout signal of the timer
|
|
connect(&_timer, SIGNAL(timeout()), this, SLOT(capture()));
|
|
}
|
|
|
|
const Image<ColorRgb> & X11Wrapper::getScreenshot()
|
|
{
|
|
_grabber.grabFrame(_screenshot, true);
|
|
return _screenshot;
|
|
}
|
|
|
|
void X11Wrapper::start()
|
|
{
|
|
_timer.start();
|
|
}
|
|
|
|
void X11Wrapper::stop()
|
|
{
|
|
_timer.stop();
|
|
}
|
|
|
|
bool X11Wrapper::displayInit()
|
|
{
|
|
return _grabber.Setup();
|
|
}
|
|
|
|
void X11Wrapper::capture()
|
|
{
|
|
_grabber.grabFrame(_screenshot, !_inited);
|
|
emit sig_screenshot(_screenshot);
|
|
_inited = true;
|
|
}
|
|
|
|
void X11Wrapper::setVideoMode(const VideoMode mode)
|
|
{
|
|
_grabber.setVideoMode(mode);
|
|
}
|