00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef OPEN_PROJECT_DIALOG_H
00023 #define OPEN_PROJECT_DIALOG_H
00024
00025 #include "ui_OpenProjectDialog.h"
00026 #include <QDialog>
00027
00028 class OpenProjectDialog : public QDialog, protected Ui::OpenProjectDialog
00029 {
00030 Q_OBJECT
00031
00032 public:
00033 OpenProjectDialog(QWidget* parent = 0);
00034 ~OpenProjectDialog();
00035
00036
00037 private slots:
00038 void update_projects_list();
00039 void on_loadProjectButton_clicked();
00040 void on_deleteProjectbutton_clicked();
00041 void on_projectDirSelectButton_clicked();
00042 void projectitem_clicked( QTreeWidgetItem* , int );
00043 };
00044
00045 #endif
00046
00047
00048