You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
716 B
45 lines
716 B
15 years ago
|
#ifndef _KCOMBOBOXTEST_H
|
||
|
#define _KCOMBOBOXTEST_H
|
||
|
|
||
14 years ago
|
#include <tqwidget.h>
|
||
15 years ago
|
|
||
14 years ago
|
class TQTimer;
|
||
|
class TQComboBox;
|
||
|
class TQPushButton;
|
||
15 years ago
|
|
||
|
class KComboBox;
|
||
|
|
||
14 years ago
|
class KComboBoxTest : public TQWidget
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
14 years ago
|
KComboBoxTest ( TQWidget *parent=0, const char *name=0 );
|
||
15 years ago
|
~KComboBoxTest();
|
||
|
|
||
|
private slots:
|
||
|
void quitApp();
|
||
|
void slotTimeout();
|
||
|
void slotDisable();
|
||
|
void slotReturnPressed();
|
||
14 years ago
|
void slotReturnPressed(const TQString&);
|
||
15 years ago
|
void slotActivated( int );
|
||
14 years ago
|
void slotActivated( const TQString& );
|
||
15 years ago
|
|
||
|
protected:
|
||
14 years ago
|
TQComboBox* m_qc;
|
||
15 years ago
|
|
||
|
KComboBox* m_ro;
|
||
|
KComboBox* m_rw;
|
||
|
KComboBox* m_hc;
|
||
|
KComboBox* m_konqc;
|
||
|
|
||
|
|
||
14 years ago
|
TQPushButton* m_btnExit;
|
||
|
TQPushButton* m_btnEnable;
|
||
15 years ago
|
|
||
14 years ago
|
TQTimer* m_timer;
|
||
15 years ago
|
};
|
||
|
|
||
|
#endif
|