2 # ---------------------------------------------------------------------
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
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.
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
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 # ------------------------------------------------------------------------
26 #ifdef _USE_WXWIDGETS_
28 //==========================================================================
30 //==========================================================================
32 #include "bbtkwxGUIEditorGraphicBBS.h"
34 #include <wx/cmdline.h>
36 #include <wx/sysopt.h>
38 #include "vtkOutputWindow.h"
39 #include "vtkRenderWindow.h"
41 class vtkOutputWindowbbGEditor : public vtkOutputWindow
44 vtkOutputWindowbbGEditor() {}
45 static vtkOutputWindowbbGEditor* New() { return new vtkOutputWindowbbGEditor;}
46 virtual void DisplayDebugText (const char *) {}
47 virtual void DisplayText (const char *) {}
48 virtual void DisplayErrorText (const char *) {}
49 virtual void DisplayWarningText (const char *) {}
50 virtual void DisplayGenericWarningText (const char *) {}
58 //EED 2017-09-16 Migration wxWidgets 2.8 to 3.0
59 #if wxMAJOR_VERSION <= 2
60 static const wxCmdLineEntryDesc cmdLineDesc[] =
62 { wxCMD_LINE_PARAM, NULL, NULL, _T("file"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
63 { wxCMD_LINE_SWITCH, _T("h"), _T("help"), _T("Prints this help") },
64 //{ wxCMD_LINE_SWITCH, _T("d"), _T("debug"), _T("Message all 9") },
68 static const wxCmdLineEntryDesc cmdLineDesc[] =
70 { wxCMD_LINE_PARAM, NULL, NULL, "file", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
71 { wxCMD_LINE_SWITCH, "h", "help", "Prints this help" },
72 //{ wxCMD_LINE_SWITCH, _T("d"), _T("debug"), _T("Message all 9") },
80 class wxBBEditorApp : public wxApp
84 int OnExit() { return true; }
87 bool OnCmdLineParsed(wxCmdLineParser& parser);
88 void OnInitCmdLine(wxCmdLineParser& parser);
90 std::vector<std::string> input_file;
94 IMPLEMENT_APP(wxBBEditorApp);
98 void wxBBEditorApp::OnInitCmdLine(wxCmdLineParser& parser)
100 // std::cout << "wxBBEditorApp::OnInitCmdLine"<<std::endl;
101 parser.SetDesc(cmdLineDesc);
105 bool wxBBEditorApp::OnCmdLineParsed(wxCmdLineParser& parser)
107 int argc = parser.GetParamCount();
108 for (int i=0; i<argc; ++i)
110 std::string s = bbtk::wx2std(parser.GetParam(i));
111 input_file.push_back(s);
114 bool help = ( parser.Found(_T("h")) );
115 usage = (help && (input_file.size()==0));
117 std::cout << "bbEditor (The Black Box Development Graphic Editor) - bbtk "
118 << bbtk::GetVersion() << " - (c) Creatis 2013"
126 // ----------------------------------------------------------------------------
127 // The `main program' equivalent, creating the windows and returning the
130 #define GL_MAJOR_VERSION 0x821B
131 #define GL_MINOR_VERSION 0x821C
133 bool wxBBEditorApp::OnInit( )
135 vtkRenderWindow *renWin = vtkRenderWindow::New();
137 printf("EED wxBBEditorApp::OnInit >>>>> vtkRenderWindow IsDirect %d\n", renWin->IsDirect() );
139 /* EED 2022-07-26 Segmentation fault with VTK9.2 in MacOs
140 int supportopengl=renWin->SupportsOpenGL();
141 printf("EED wxBBEditorApp::OnInit >>>>> vtkRenderWindow SupportsOpenGL %d\n", supportopengl );
143 if (supportopengl==0)
146 wxString message=wxT("OpenGL 3>= not detected.\n Try to install opengl drivers or use de opengl-mesa version.\n Copy from: <ProgramsFiles>\\CreaTools\\crea_TPdlls-4.0.0\\bin\\opengl-mesa the file: opengl32.dll\n to\n <ProgramsFiles>\\CreaTools\\CreaTools-3.0.0\\bin ");
148 wxString message=wxT("OpenGL 3>= not detected.\n Try to install opengl drivers or use de opengl-mesa version.\n ");
150 wxMessageBox(message);
155 vtkOutputWindowbbGEditor *vtkoutputwindowbbgeditor= vtkOutputWindowbbGEditor::New();
156 vtkOutputWindow::SetInstance( vtkoutputwindowbbgeditor );
157 vtkoutputwindowbbgeditor->Delete();
160 /* assume this is OSX */
161 wxSystemOptions::SetOption("mac.listctrl.always_use_generic", 1);
166 //See http://www.wxwindows.org/faqgtk.htm#locale
167 setlocale(LC_NUMERIC, "C");
170 bbtk::wxGUIEditorGraphicBBS *iegbbs;
172 iegbbs = new bbtk::wxGUIEditorGraphicBBS(NULL);
173 SetTopWindow(iegbbs);
178 // 1. This block have to be mooved to the library
179 // 2. We have to verifiy if the file is a good bbg or a good bbs
180 // 3. Clean the path to pout just the name of the file in the second parameter (information of the tabPanel)
181 // OpenDiagram(<PATH+Filename>, <Filena>);
182 for(int i=0;i<input_file.size();i++)
184 int strsize=input_file[i].size()-1;
185 if ((input_file[i])[strsize]=='g')
187 iegbbs->OpenDiagram(input_file[i], input_file[i]);
189 if ((input_file[i])[strsize]=='s')
191 iegbbs->OpenBBS(input_file[i], input_file[i]);
200 // How to have a Console and wxWidgets
201 // http://www.wxwidgets.org/wiki/index.php/MSVC_Setup_Guide
202 // In Visual C++ 6 (7 should be similar), to create an application that is both a console application
203 // (cout's to the console are visible) and has a wxWidgets GUI,
204 // you need to use the linker option "/subsystem:console" and the following code:
205 int main(int argc, char* argv[])
208 wcstombs(buffer, ::GetCommandLine(), 500);
209 return WinMain(::GetModuleHandle(NULL), NULL, buffer, SW_SHOWNORMAL);
210 // return WinMain(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), SW_SHOWNORMAL);
213 #endif // defined(_WIN32)
217 //==========================================================================
219 //==========================================================================
221 int main(int argc, char* argv[])
223 std::cout << "bbStudio was not compiled with wxWidgets : ciao !" <<std::endl;
228 #endif //#ifdef _USE_WXWIDGETS_