Rename Qt4 directory to Qt
This commit is contained in:
42
win/Qt/qt_delay.cpp
Normal file
42
win/Qt/qt_delay.cpp
Normal file
@@ -0,0 +1,42 @@
|
||||
// Copyright (c) Warwick Allison, 1999.
|
||||
// Qt4 conversion copyright (c) Ray Chason, 2012-2014.
|
||||
// NetHack may be freely redistributed. See license for details.
|
||||
|
||||
// qt_delay.cpp -- implement a delay
|
||||
|
||||
#include "hack.h"
|
||||
#undef Invisible
|
||||
#undef Warning
|
||||
#undef index
|
||||
#undef msleep
|
||||
#undef rindex
|
||||
#undef wizard
|
||||
#undef yn
|
||||
#undef min
|
||||
#undef max
|
||||
|
||||
#include <QtGui/QtGui>
|
||||
#include "qt_delay.h"
|
||||
|
||||
namespace nethack_qt_ {
|
||||
|
||||
// RLC Can we use QTimer::single_shot for this?
|
||||
NetHackQtDelay::NetHackQtDelay(int ms) :
|
||||
msec(ms), m_timer(0), m_loop(this)
|
||||
{
|
||||
}
|
||||
|
||||
void NetHackQtDelay::wait()
|
||||
{
|
||||
m_timer = startTimer(msec);
|
||||
m_loop.exec();
|
||||
}
|
||||
|
||||
void NetHackQtDelay::timerEvent(QTimerEvent* timer)
|
||||
{
|
||||
m_loop.exit();
|
||||
killTimer(m_timer);
|
||||
m_timer = 0;
|
||||
}
|
||||
|
||||
} // namespace nethack_qt_
|
||||
Reference in New Issue
Block a user