]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMNewProjectDialog.h
4e0ca5e54cac867ba8c482e7cdc121982e8eddd0
[crea.git] / lib / creaDevManagerLib / wxCDMNewProjectDialog.h
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Santé)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 #
8 #  This software is governed by the CeCILL-B license under French law and 
9 #  abiding by the rules of distribution of free software. You can  use, 
10 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
11 #  license as circulated by CEA, CNRS and INRIA at the following URL 
12 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
13 #  or in the file LICENSE.txt.
14 #
15 #  As a counterpart to the access to the source code and  rights to copy,
16 #  modify and redistribute granted by the license, users are provided only
17 #  with a limited warranty  and the software's author,  the holder of the
18 #  economic rights,  and the successive licensors  have only  limited
19 #  liability. 
20 #
21 #  The fact that you are presently reading this means that you have had
22 #  knowledge of the CeCILL-B license and that you accept its terms.
23 # ------------------------------------------------------------------------ */ 
24
25
26 /*
27  * wxCDMNewProjectDialog.h
28  *
29  *  Created on: 13/11/2012
30  *      Author: daniel
31  */
32
33 #ifndef WXCDMNEWPROJECTDIALOG_H_
34 #define WXCDMNEWPROJECTDIALOG_H_
35
36 #include <creaWx.h>
37 #include <wx/dialog.h>
38
39 class wxCDMNewProjectDialog : public wxDialog
40 {
41   DECLARE_EVENT_TABLE()
42 public:
43   wxCDMNewProjectDialog(
44       wxWindow* parent,
45       wxWindowID id = wxID_ANY,
46       const wxString& caption = wxString("New Project"),
47       const wxPoint& position = wxDefaultPosition,
48       const wxSize& size = wxSize(400,300),
49       long style = wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER
50   );
51   ~wxCDMNewProjectDialog();
52   bool Create(
53       wxWindow* parent,
54       wxWindowID id = wxID_ANY,
55       const wxString& caption = wxString("New Project"),
56       const wxPoint& position = wxDefaultPosition,
57       const wxSize& size = wxSize(400,300),
58       long style = wxDEFAULT_DIALOG_STYLE
59   );
60
61   const wxString GetProjectLocation();
62   const wxString GetProjectName();
63   const wxString GetPackageAuthor();
64   const wxString GetPackageDescription();
65
66 protected:
67   void CreateControls();
68
69 private:
70   wxStaticText* projectLocation;
71   wxTextCtrl* projectName;
72   wxTextCtrl* packageAuthor;
73   wxTextCtrl* packageDescription;
74
75 //handlers
76 protected:
77   void OnCreateProject(wxCommandEvent& event);
78   void OnCancel(wxCommandEvent& event);
79   void OnChooseLocation(wxCommandEvent& event);
80 };
81
82 #endif /* WXCDMNEWPROJECTDIALOG_H_ */