]> Creatis software - bbtkGEditor.git/commitdiff
*** empty log message ***
authordavila <>
Thu, 17 Feb 2011 11:01:53 +0000 (11:01 +0000)
committerdavila <>
Thu, 17 Feb 2011 11:01:53 +0000 (11:01 +0000)
appli/bbEditor/bbEditor.cxx
lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.cxx
lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxTabPanelsManager.cxx
lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxVtkSceneManager.cxx

index ca584671744db6168b083f3fcbedb16c6a29912b..f150f263f0791f99372a84fe021da12866f6ef18 100644 (file)
@@ -6,21 +6,21 @@
 
 #include "bbtkwxGUIEditorGraphicBBS.h"
 
-#include <wx/cmdline.h> 
+#include <wx/cmdline.h>
 #include <wx/app.h>
 #include <wx/sysopt.h>
+
 class wxBBEditorApp : public wxApp
 {
 public:
-  bool OnInit( ); 
+  bool OnInit( );
   int  OnExit() { return true; }
 
 };
-  
+
 IMPLEMENT_APP(wxBBEditorApp);
+
+
 
 // ----------------------------------------------------------------------------
 // The `main program' equivalent, creating the windows and returning the
@@ -38,28 +38,31 @@ bool wxBBEditorApp::OnInit( )
   setlocale(LC_NUMERIC, "C");
 #endif
 
-       bbtk::wxGUIEditorGraphicBBS *iegbbs; 
+       bbtk::wxGUIEditorGraphicBBS *iegbbs;
+printf("EED wxBBEditorApp::OnInit 0\n");
        iegbbs = new bbtk::wxGUIEditorGraphicBBS(NULL);
-       SetTopWindow(iegbbs);  
+printf("EED wxBBEditorApp::OnInit 1\n");
+       SetTopWindow(iegbbs);
        iegbbs->Show(true);
+printf("EED wxBBEditorApp::OnInit 2\n");
 
        return true;
 }
 
 
-#if defined(_WIN32) 
+#if defined(_WIN32)
 
 //  How to have a Console and wxWidgets
 //  http://www.wxwidgets.org/wiki/index.php/MSVC_Setup_Guide
-//   In Visual C++ 6 (7 should be similar), to create an application that is both a console application 
-//  (cout's to the console are visible) and has a wxWidgets GUI, 
+//   In Visual C++ 6 (7 should be similar), to create an application that is both a console application
+//  (cout's to the console are visible) and has a wxWidgets GUI,
 //  you need to use the linker option "/subsystem:console" and the following code:
 int main(int argc, char* argv[])
 {
        return WinMain(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), SW_SHOWNORMAL);
 }
 
-#endif // defined(_WIN32) 
+#endif // defined(_WIN32)
 
 
 #else
@@ -68,7 +71,7 @@ int main(int argc, char* argv[])
 //==========================================================================
 #include <iostream>
 int main(int argc, char* argv[])
-{  
+{
   std::cout << "bbStudio was not compiled with wxWidgets : ciao !" <<std::endl;
   return 0;
 }
index 1576f1ecc64a365021db155a760ed48e2d8e09bc..c0255da5686e4dbc98eb685a8c84bf31bd895f07 100644 (file)
@@ -49,11 +49,13 @@ namespace bbtk
        //=========================================================================
        wxGEditorTabPanel::wxGEditorTabPanel(wxWindow *parent,int id):wxPanel(parent),wxTextDropTarget()
        {
+printf("EED wxGEditorTabPanel::wxGEditorTabPanel 0\n");
                printf ("EED %p wxGEditorTabPanel 2 ()\n" , this );
                _id=id;
                _panelAUIMgr = new wxAuiManager(this);
                _sceneManager = NULL;
                initWxVtkCanvas();
+printf("EED wxGEditorTabPanel::wxGEditorTabPanel 1\n");
        }
 
        //=========================================================================
@@ -69,6 +71,7 @@ printf ("EED %p ~wxGEditorTabPanel()\n" , this );
        //=========================================================================
        void wxGEditorTabPanel::initWxVtkCanvas()
        {
+printf("EED wxGEditorTabPanel::initWxVtkCanvas 0\n");
                wxVtk3DBaseView *baseview = new wxVtk3DBaseView(this);
                baseview->Configure();
                _sceneManager=new wxVtkSceneManager(this,baseview,_id);
@@ -79,6 +82,7 @@ printf ("EED %p ~wxGEditorTabPanel()\n" , this );
                _panelAUIMgr->AddPane((wxWindow*)baseview->GetWxVTKRenderWindowInteractor(),wxAuiPaneInfo().Fixed().CenterPane());
 
                _panelAUIMgr->Update();
+printf("EED wxGEditorTabPanel::initWxVtkCanvas 1\n");
        }
 
        //=========================================================================
index 0c5b96b3f8b27a7833524f8e03399ba985f6f19f..faa28b6ba9a89b5d65a8589477f574cd95faf8ae 100644 (file)
@@ -59,12 +59,15 @@ namespace bbtk
        //=========================================================================
        void wxTabPanelsManager::addNewTab(wxString tabName)
        {
+printf("EED wxTabPanelsManager::addNewTab 0\n");
+
                _lastId++;
                wxGEditorTabPanel *newPanel         = new wxGEditorTabPanel(_notebook,_lastId);
                newPanel->setPanelsManager(this);
                _panels[_lastId]                    = newPanel;
                _actual                             = newPanel;
                _notebook->AddPage(newPanel, tabName  ,true);
+printf("EED wxTabPanelsManager::addNewTab 1\n");
        }
 
        //=========================================================================
index 1c13d7d0d4e3201f56fe7260ecfe0a5f6724b581..d2d196262c7f214ab9f53c523f322c80836ef2c0 100644 (file)
@@ -99,6 +99,7 @@ namespace bbtk
 
        void wxVtkSceneManager::configureBaseView()
        {
+printf("EED wxVtkSceneManager::configureBaseView 0\n");
                vtkInteractorStyleBaseView2D *interactorstylebaseview = vtkInteractorStyleBaseView2D::New();
 
                _baseView->SetInteractorStyleBaseView(interactorstylebaseview);
@@ -185,6 +186,7 @@ namespace bbtk
                _aPolygonMapper->Modified();
 
                _baseView->GetRenderer()->AddActor( _fillObjectActor );
+printf("EED wxVtkSceneManager::configureBaseView 1\n");
        }
 
        //=========================================================================