00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef __QCOMPLETIONBOX_H__
00019 #define __QCOMPLETIONBOX_H__
00020
00021 #undef slots
00022 #include <Python.h>
00023 #define slots
00024 #include <qcombobox.h>
00025 #include <qstringlist.h>
00026
00027 class CmdInterpreter;
00028
00036 class QCommandBox : public QComboBox
00037 {
00038 Q_OBJECT
00039 public:
00041 QCommandBox( CmdInterpreter *cmdInterpreter, QWidget *parent=0, const char *name=0 );
00043 void registerPyModule( PyObject *module );
00044 protected slots:
00046 void autoComplete( const QString & );
00048 void itemActivated( const QString & );
00050 void exec();
00051 signals:
00052 void commandExecuted();
00053 private:
00055 QStringList commands;
00057 CmdInterpreter *cmdInterpreter;
00058 };
00059
00060 #endif
00061