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.
tdelibs/kdeui/tests/kcomboboxtest.h

45 lines
715 B

#ifndef _KCOMBOBOXTEST_H
#define _KCOMBOBOXTEST_H
#include <tqwidget.h>
class TQTimer;
class TQComboBox;
class TQPushButton;
class KComboBox;
class KComboBoxTest : public QWidget
{
Q_OBJECT
public:
KComboBoxTest ( TQWidget *parent=0, const char *name=0 );
~KComboBoxTest();
private slots:
void quitApp();
void slotTimeout();
void slotDisable();
void slotReturnPressed();
void slotReturnPressed(const TQString&);
void slotActivated( int );
void slotActivated( const TQString& );
protected:
TQComboBox* m_qc;
KComboBox* m_ro;
KComboBox* m_rw;
KComboBox* m_hc;
KComboBox* m_konqc;
TQPushButton* m_btnExit;
TQPushButton* m_btnEnable;
TQTimer* m_timer;
};
#endif