Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef SALOMEAPP_LOADSTUDIESDLG_H
00021 #define SALOMEAPP_LOADSTUDIESDLG_H
00022
00023 #include "SalomeApp.h"
00024
00025 #include <QDialog>
00026
00027 class QListWidget;
00028 class QPushButton;
00029 class QStringList;
00030
00031 class SALOMEAPP_EXPORT SalomeApp_LoadStudiesDlg : public QDialog
00032 {
00033 Q_OBJECT
00034
00035 private:
00036 SalomeApp_LoadStudiesDlg( QWidget*, const QStringList& );
00037
00038 public:
00039 ~SalomeApp_LoadStudiesDlg();
00040
00041 static QString selectStudy( QWidget*, const QStringList& );
00042
00043 QString selectedStudy();
00044
00045 private slots:
00046 void updateState();
00047
00048 private:
00049 QListWidget* myList;
00050 QPushButton* myButtonOk;
00051 };
00052
00053 #endif // STD_LOADSTUDIESDLG_H