|
|
/*************************************************************************** autocqdlg.h - description ------------------- begin : Sat Aug 5 2000 copyright : (C) 2000 by Luc Langehegermann email : luc@1409.org ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef AUTOCQDLG_H #define AUTOCQDLG_H #include#include #include /**Dialog that handles Calling CQ with adjustable timeout *@author Luc Langehegermann */ class autoCQdlg : public QSemiModal { Q_OBJECT public: autoCQdlg(QWidget *parent=0, const char *name=0, bool modal=false); ~autoCQdlg(); private: int seconds; int sec; QLabel* text; private slots: // Private slots void slotCQTimeout(); }; #endif
Generated by: ernie on homer on Fri Aug 30 19:54:09 2002, using kdoc 2.0a53. |