// Hyperion-X11 includes #include "X11Wrapper.h" X11Wrapper::X11Wrapper(int grabInterval, bool useXGetImage, int cropLeft, int cropRight, int cropTop, int cropBottom, int horizontalPixelDecimation, int verticalPixelDecimation) : _timer(this), _grabber(useXGetImage, cropLeft, cropRight, cropTop, cropBottom, horizontalPixelDecimation, verticalPixelDecimation) { _timer.setSingleShot(false); _timer.setInterval(grabInterval); // Connect capturing to the timeout signal of the timer connect(&_timer, SIGNAL(timeout()), this, SLOT(capture())); } const Image & X11Wrapper::getScreenshot() { const Image & screenshot = _grabber.grab(); return screenshot; } void X11Wrapper::start() { _timer.start(); } void X11Wrapper::stop() { _timer.stop(); } bool X11Wrapper::displayInit() { return _grabber.Setup(); } void X11Wrapper::capture() { const Image & screenshot = _grabber.grab(); emit sig_screenshot(screenshot); } void X11Wrapper::setGrabbingMode(const GrabbingMode mode) { switch (mode) { case GRABBINGMODE_VIDEO: case GRABBINGMODE_PAUSE: case GRABBINGMODE_AUDIO: case GRABBINGMODE_PHOTO: case GRABBINGMODE_MENU: case GRABBINGMODE_SCREENSAVER: case GRABBINGMODE_INVALID: start(); break; case GRABBINGMODE_OFF: stop(); break; } } void X11Wrapper::setVideoMode(const VideoMode mode) { _grabber.setVideoMode(mode); }