kdelibs/kdeui/tests/kcomboboxtest.h
2015-07-11 18:42:46 +03:00

49 lines
809 B
C++

#ifndef KCOMBOBOXTEST_H
#define KCOMBOBOXTEST_H
#include <QtGui/QWidget>
class QTimer;
class QComboBox;
class QPushButton;
class KComboBox;
class KComboBoxTest : public QWidget
{
Q_OBJECT
public:
KComboBoxTest ( QWidget *parent=0);
~KComboBoxTest();
private Q_SLOTS:
void quitApp();
void slotTimeout();
void slotDisable();
void slotReturnPressed();
void slotReturnPressed(const QString&);
void slotActivated( int );
void slotActivated( const QString& );
void slotCurrentIndexChanged(int);
void slotCurrentIndexChanged(const QString&);
private:
void connectComboSignals(QComboBox* combo);
QComboBox* m_qc;
KComboBox* m_ro;
KComboBox* m_rw;
KComboBox* m_hc;
KComboBox* m_konqc;
QPushButton* m_btnExit;
QPushButton* m_btnEnable;
QTimer* m_timer;
};
#endif