00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00018 #ifndef INTERNALQUEUEINTERFACECONFIGDIALOG_H
00019 #define INTERNALQUEUEINTERFACECONFIGDIALOG_H
00020
00021 #include <QtGui/QDialog>
00022
00023 class QLineEdit;
00024
00025 namespace GlobalSearch {
00026 class AbstractDialog;
00027 class OptBase;
00028 class InternalQueueInterface;
00029
00030
00031 class InternalQueueInterfaceConfigDialog : public QDialog
00032 {
00033 Q_OBJECT;
00034 public:
00035 InternalQueueInterfaceConfigDialog(AbstractDialog *parent,
00036 OptBase *opt,
00037 InternalQueueInterface *qi);
00038
00039 public slots:
00040 void accept();
00041 void reject();
00042 void updateGUI();
00043
00044 protected:
00045 OptBase *m_opt;
00046 InternalQueueInterface *m_queueInterface;
00047 QLineEdit *m_edit_workdir;
00048 QLineEdit *m_edit_description;
00049
00050 };
00051
00052 }
00053
00054 #endif
00055