]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMApplicationHelpDialog.cpp
d9ff03a26a613f23c9c649a2643b24e1fd41a8a0
[crea.git] / lib / creaDevManagerLib / wxCDMApplicationHelpDialog.cpp
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 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9 #
10 #  This software is governed by the CeCILL-B license under French law and 
11 #  abiding by the rules of distribution of free software. You can  use, 
12 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
13 #  license as circulated by CEA, CNRS and INRIA at the following URL 
14 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
15 #  or in the file LICENSE.txt.
16 #
17 #  As a counterpart to the access to the source code and  rights to copy,
18 #  modify and redistribute granted by the license, users are provided only
19 #  with a limited warranty  and the software's author,  the holder of the
20 #  economic rights,  and the successive licensors  have only  limited
21 #  liability. 
22 #
23 #  The fact that you are presently reading this means that you have had
24 #  knowledge of the CeCILL-B license and that you accept its terms.
25 # ------------------------------------------------------------------------ 
26  */
27
28
29 /*
30  * wxCDMApplicationHelpDialog.cpp
31  *
32  *  Created on: 11/1/2013
33  *      Author: Daniel Felipe Gonzalez Obando
34  */
35
36 #include "wxCDMApplicationHelpDialog.h"
37
38 #include "creaDevManagerIds.h"
39
40 BEGIN_EVENT_TABLE(wxCDMApplicationHelpDialog, wxDialog)
41 EVT_BUTTON(ID_BUTTON_CANCEL, wxCDMApplicationHelpDialog::OnFinish)
42 EVT_BUTTON(ID_BUTTON_OPENPROJECT, wxCDMApplicationHelpDialog::OnCMakeLists)
43 EVT_BUTTON(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMApplicationHelpDialog::OnCMakeLists)
44 EVT_CHECKBOX(ID_CHECKBOX_DISABLE_HELP, wxCDMApplicationHelpDialog::OnDisableHelp)
45 END_EVENT_TABLE()
46
47 wxCDMApplicationHelpDialog::wxCDMApplicationHelpDialog(
48     wxWindow* parent,
49     modelCDMApplication* application,
50     wxWindowID id,
51     const wxString& caption,
52     const wxPoint& position,
53     const wxSize& size,
54     long style
55 )
56 {
57   wxCDMApplicationHelpDialog::Create(parent, id, caption, position, size, style);
58   this->application = application;
59 }
60
61 wxCDMApplicationHelpDialog::~wxCDMApplicationHelpDialog()
62 {
63 }
64
65 bool wxCDMApplicationHelpDialog::Create(
66     wxWindow* parent,
67     wxWindowID id,
68     const wxString& caption,
69     const wxPoint& position,
70     const wxSize& size,
71     long int style
72 )
73 {
74   wxDialog::Create(parent, id, caption, position, size, style);
75
76   this->CreateControls();
77
78   return TRUE;
79 }
80
81 void wxCDMApplicationHelpDialog::CreateControls()
82 {
83
84   wxBoxSizer* v_sizer1 = new wxBoxSizer(wxVERTICAL);
85
86
87   wxStaticText* title = new wxStaticText(this, wxID_ANY, wxT("Working with Applications"), wxDefaultPosition, wxDefaultSize, wxALIGN_LEFT);//new wxRichTextCtrl(this,wxID_ANY, wxString("Create a new project"), wxDefaultPosition, wxDefaultSize, wxRE_READONLY);
88   v_sizer1->Add(title, 0, wxALIGN_LEFT | wxALL | wxALIGN_CENTER_VERTICAL, 5);
89
90   wxStaticText* instruction = new wxStaticText(
91       this,
92       wxID_ANY,
93       crea::std2wx(
94           "Applications are stand alone programs that use the projects' core functionality (libraries' functions). These "
95           "applications are useful when showing the projects' \"out of the box\" functionalities.\n"
96           "Applications are stored in the project's appli folder and each application has its own dedicated folder. Inside "
97           "these folders each application has its main file.\n"
98           "\n"
99           "To start developing an application, go ahead and open the application main file with the button \"Open Main File\" "
100           "and implement the application's functionality.\n"
101           "If you need to create separate classes in the application folder, or inside an specific folders you can do it by "
102           "creating a new class with the \"Create Class\" button or by creating a folder with the \"Create Folder\" button.\n"
103           "Then, in order to include your applications in the project correctly you must include them in the appli's folder "
104           "\"CMakeLists.txt\" file. Also, if you create additional folders in your library you should include them in the application's "
105           "\"CMakeLists.txt\" file.\n"
106           "\n"
107           "You can easily edit the CMakeLists files previously mentioned by clicking on the following buttons."),
108           wxDefaultPosition,
109           wxDefaultSize,
110           wxALIGN_LEFT
111   );
112   v_sizer1->Add(instruction, 0,wxEXPAND | wxALL, 5);
113
114   wxButton* editCMakePKGBtn = new wxButton(this, ID_BUTTON_EDIT_CMAKELISTSFILE, wxT("Open Application's directory CMakeLists file"));
115   wxButton* editCMakePRJBtn= new wxButton(this, ID_BUTTON_OPENPROJECT, wxT("Open Appli's directory CMakeLists file"));
116
117   v_sizer1->Add(editCMakePKGBtn, 0, wxEXPAND | wxLEFT | wxRIGHT, 15);
118   v_sizer1->Add(editCMakePRJBtn, 0, wxEXPAND | wxLEFT | wxRIGHT, 15);
119
120   v_sizer1->Add(new wxCheckBox(this, ID_CHECKBOX_DISABLE_HELP, wxT("&Disable help")), 0, wxALIGN_RIGHT | wxRIGHT, 10);
121
122   v_sizer1->Add(new wxButton(this, ID_BUTTON_CANCEL, wxT("Close")), 0, wxALIGN_RIGHT | wxRIGHT | wxBOTTOM | wxALIGN_CENTER_VERTICAL, 30);
123
124   SetSizer(v_sizer1);
125   //v_sizer1->RecalcSizes();
126 }
127
128 void wxCDMApplicationHelpDialog::OnFinish(wxCommandEvent& event)
129 {
130   this->EndDialog(wxID_CANCEL);
131 }
132
133 void wxCDMApplicationHelpDialog::OnCMakeLists(wxCommandEvent& event)
134 {
135   //TODO: implement method
136   std::cout << "OnCMakeLists not implemented yet." << std::endl;
137   event.Skip();
138 }
139
140 void wxCDMApplicationHelpDialog::OnCMakeListsEnter(wxMouseEvent& event)
141 {
142   //TODO: implement method
143   std::cout << "OnCMakeListsEnter not implemented yet." << std::endl;
144   event.Skip();
145 }
146
147 void wxCDMApplicationHelpDialog::OnCMakeListsExit(wxMouseEvent& event)
148 {
149   //TODO: implement method
150   std::cout << "OnCMakeListsExit not implemented yet." << std::endl;
151   event.Skip();
152 }
153
154 void wxCDMApplicationHelpDialog::OnDisableHelp(wxCommandEvent& event)
155 {
156   wxPostEvent(this->GetParent(), event);
157 }