12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /*
- * NICE-Core - efficient algebra and computer vision methods
- * - libimagedisplay - An imagedisplay/template for new NICE libraries
- * See file License for license information.
- */
- #include "core/imagedisplay/DefaultMainWindow.h"
- #include <qapplication.h>
- #include <qpushbutton.h>
- #include <core/imagedisplay/ImageDisplayManager.h>
- #include <core/imagedisplay/ImageDisplayManagerWidget.h>
- namespace NICE {
- DefaultMainWindow::DefaultMainWindow(const char* title) : QWidget(NULL, NULL) {
- setWindowTitle(title);
- // create a timer waking us regularly
- timer.reset(new QTimer(this));
- timer->connect(timer.get(), SIGNAL(timeout()),
- this, SLOT(timerSlot()));
- timerIntervalMS = 0;
- timer->start(timerIntervalMS);
- //ImageDisplayManagerWidget* manager =
- //new ImageDisplayManagerWidget(this, "image manager");
- }
- DefaultMainWindow::~DefaultMainWindow() {
- timer->stop();
- }
- //void DefaultMainWindow::closeEvent(QCloseEvent* e) {
- // e->accept();
- // qApp->quit();
- //}
- void DefaultMainWindow::timerSlot() {
- int nextSleepMS = timerIntervalMS;
- loop(nextSleepMS);
- if (nextSleepMS < 0) {
- timer->stop();
- } else if (nextSleepMS != timerIntervalMS) {
- timerIntervalMS = nextSleepMS;
- timer->start(timerIntervalMS);
- }
- }
- void DefaultMainWindow::loop(int& nextSleepMS) {
- nextSleepMS = -1;
- }
- } // namespace
|