diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-07 13:06:00 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-07 13:06:00 +0900 |
commit | 628b0bb74c3fc327efff8add9c73ada04b1cbea2 (patch) | |
tree | 16062922d35b5e0153b9f866e440f36603bd4f55 /examples/tetrix/tqdragapp.h | |
parent | 7552c6d73043b1040139033f6864db48ae5446cf (diff) | |
download | tqt-628b0bb7.tar.gz tqt-628b0bb7.zip |
Rename drag-n-drop nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'examples/tetrix/tqdragapp.h')
-rw-r--r-- | examples/tetrix/tqdragapp.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/examples/tetrix/tqdragapp.h b/examples/tetrix/tqdragapp.h new file mode 100644 index 000000000..c710bd974 --- /dev/null +++ b/examples/tetrix/tqdragapp.h @@ -0,0 +1,31 @@ +/**************************************************************************** +** +** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved. +** +** This file is part of an example program for TQt. This example +** program may be used, distributed and modified without limitation. +** +*****************************************************************************/ + +#ifndef TQDRAGAPP_H +#define TQDRAGAPP_H + +#include "ntqapplication.h" + +class TQDragger; + +class TQDragApplication : public TQApplication +{ + TQ_OBJECT +public: + TQDragApplication( int &argc, char **argv ); + virtual ~TQDragApplication(); + + virtual bool notify( TQObject *, TQEvent * ); // event filter + +private: + TQDragger *dragger; +}; + + +#endif // TQDRAGAPP_H |