00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef STRINGBOX_H
00019 #define STRINGBOX_H
00020
00021 #include <qgroupbox.h>
00022
00023 #include "odinqt.h"
00024
00029 class stringBox : public QGroupBox {
00030 Q_OBJECT
00031
00032 public:
00033 stringBox(const char* text, QWidget *parent, const char *name, const char *buttontext=0);
00034 ~stringBox();
00035
00036 public slots:
00037 void setstringBoxText( const char* text );
00038
00039
00040 private slots:
00041 void reportTextChanged();
00042 void reportButtonClicked();
00043
00044
00045 signals:
00046 void stringBoxTextEntered( const char* text );
00047 void stringBoxButtonPressed();
00048
00049 private:
00050 GuiGridLayout* grid;
00051 GuiLineEdit* le;
00052 GuiButton* pb;
00053
00054 };
00055
00056
00057 #endif