Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef ObjectList_H
00014 #define ObjectList_H
00015
00016 #include <QObject>
00017 #include <QWidget>
00018
00019 class QPushButton;
00020 class QTableWidget;
00021 class QLabel;
00022 class ORObjectPropertiesM;
00023
00024
00025
00026
00027 class SpeechOutM;
00036 class ObjectList : public QWidget {
00037
00038 Q_OBJECT
00039
00040 public:
00041
00045 ObjectList(QWidget *parent = 0);
00046
00050 ~ObjectList();
00051
00052 public slots:
00053
00057 void loadObject();
00061 void deleteObject();
00062
00063
00064
00065
00066 signals:
00067
00068 private:
00069
00070 QTableWidget* m_objectsList;
00071 QPushButton* deleteObjectButton;
00072 QLabel* heading;
00073
00074 QString m_LastOpenPath;
00075
00076 };
00077
00078 #undef THIS
00079 #endif