Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef QGO4COMMANDSHISTORY_H
00015 #define QGO4COMMANDSHISTORY_H
00016
00017 #include <QComboBox>
00018
00019 #include <QtCore/QStringList>
00020
00021 #ifdef WIN32
00022 class QGo4CommandsHistory : public QComboBox {
00023
00024 #else
00025
00026 #include <QtDesigner/QDesignerExportWidget>
00027 class QDESIGNER_WIDGET_EXPORT QGo4CommandsHistory : public QComboBox {
00028
00029 #endif
00030
00031 Q_OBJECT
00032
00033 public:
00034 QGo4CommandsHistory(QWidget* w, const char* name = 0);
00035 virtual ~QGo4CommandsHistory();
00036
00037 QStringList getHistory(int max = 50);
00038
00039 Q_SIGNALS:
00040 void enterPressedSingal();
00041
00042 protected:
00043 virtual void keyPressEvent(QKeyEvent* e);
00044 };
00045
00046 #endif