From 754ae1a54132eb41332267fc70a42595017c5a6e Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sat, 16 Jul 2016 23:44:31 +0200 Subject: gui, tracker/{aruco,pt}, api: detect whether widget is visible on screen Sadly, it's only implemented right now on win32. Remove "set enabled" code for the video widget since it only works for explicit window minimization, not covering by other windows. --- tracker-pt/pt_video_widget.h | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) (limited to 'tracker-pt/pt_video_widget.h') diff --git a/tracker-pt/pt_video_widget.h b/tracker-pt/pt_video_widget.h index d9144ac0..c2957876 100644 --- a/tracker-pt/pt_video_widget.h +++ b/tracker-pt/pt_video_widget.h @@ -1,5 +1,5 @@ /* Copyright (c) 2012 Patrick Ruoff - * Copyright (c) 2014 Stanislaw Halik + * Copyright (c) 2014-2016 Stanislaw Halik * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -19,25 +19,15 @@ #include #include -class PTVideoWidget : public QWidget +class PTVideoWidget final : public QWidget { Q_OBJECT public: - PTVideoWidget(QWidget *parent) : - QWidget(parent), - freshp(false) - { - connect(&timer, SIGNAL(timeout()), this, SLOT(update_and_repaint())); - timer.start(50); - } + PTVideoWidget(QWidget *parent); void update_image(const cv::Mat &frame); protected slots: - void paintEvent( QPaintEvent* e ) { - QMutexLocker foo(&mtx); - QPainter painter(this); - painter.drawImage(e->rect(), texture); - } + void paintEvent(QPaintEvent* e) override; void update_and_repaint(); private: QMutex mtx; -- cgit v1.2.3