]> Creatis software - creaImageIO.git/blob - src2/creaImageIOWxGimmickView.cpp
export from storage to storage functionality
[creaImageIO.git] / src2 / creaImageIOWxGimmickView.cpp
1 #include <creaImageIOPACSConnection.h>
2 #include <creaImageIOWxPACSConnectionPanel.h>
3 #include <creaImageIOWxGimmickView.h>
4 #include <creaImageIOWxTreeView.h>
5 #include <creaImageIOSystem.h>
6 #include <creaImageIOWxCustomizeConfigPanel.h>
7 #include <creaImageIOWxListenerPanel.h>
8 #include <creaImageIOWxEditFieldsPanel.h>
9 #include <creaImageIOWxAttributeSelectionPanel.h>
10 #include <creaImageIOWxDescriptorPanel.h>
11 #include <creaImageIOWxDumpPanel.h>
12 #include <creaImageIOWxExportDlg.h>
13
14 using namespace crea;
15 // Icons
16 #include "icons/accept.xpm"
17 #include "icons/add.xpm"
18 #include "icons/folder-down.xpm"
19 #include "icons/page-down.xpm"
20 #include "icons/remove.xpm"
21 #include "icons/database-add.xpm"
22 #include "icons/create-database.xpm"
23 #include "icons/help.xpm"
24 #include "icons/synchronize.xpm"
25 #include "icons/settings.xpm"
26 #include "icons/tools.xpm"
27 //#include "icons/import.xpm"
28
29 #include <wx/imaglist.h>
30 #include <wx/popupwin.h>
31 #include<boost/filesystem/operations.hpp>
32 #if defined(BUILD_BRUKER)
33         #include "bruker2dicom.h"
34 #endif
35
36
37 #include <creaImageIOGimmick.h>
38 #ifdef _DEBUG
39 #define new DEBUG_NEW
40 #endif
41
42 namespace creaImageIO
43 {
44    
45   //======================================================================
46   // The ids of the different tools
47   enum
48     {
49         TOOL_ADDFILES_ID    = 1,
50         TOOL_ADDDIR_ID      = 2,
51         TOOL_ADDDATABASE_ID = 3,
52         TOOL_REMOVE_ID      = 4,
53         TOOL_SYNCHRONIZE_ID = 5,
54         TOOL_HELP_ID        = 6,
55         TOOL_SETTINGS_ID    = 7,
56         TOOL_TOOLS_ID       = 8,
57         TOOL_CREATEDB_ID    = 9,
58         TOOL_PACS_ID        = 10
59     };
60   //======================================================================
61
62   //================================================================
63   // 
64   const int icon_number = 11;
65   // Icon ids
66   typedef enum
67     {
68       Icon_create_database,
69       Icon_accept,
70       Icon_add,
71       Icon_folder_down,
72       Icon_page_down,
73       Icon_database_add,
74       Icon_remove,
75       Icon_synchronize,
76       Icon_help,
77       Icon_settings,
78       Icon_tools
79     }
80     icon_id;
81   //================================================================
82
83   //================================================================
84   /*
85   const icon_id Icon[5] = { Icon_Database,  
86                             Icon_Patient,
87                             Icon_Study,
88                             Icon_Series,
89                             Icon_Image };
90   */
91   //================================================================
92
93
94   //======================================================================
95   // CTor
96         WxGimmickView::WxGimmickView(boost::shared_ptr<Gimmick> gimmick,
97                                wxWindow *parent, 
98                                const wxWindowID id,
99                                const wxPoint& pos, 
100                                const wxSize& size,
101                                int min_dim,
102                                int max_dim,
103                                int number_of_threads)
104     : wxPanel(parent,id,pos,size),
105       GimmickView(gimmick, number_of_threads),
106       mProgressDialog(0),
107       mConstructed(false)
108   {
109     GimmickDebugMessage(1,"WxGimmickView::WxGimmickView"
110                         <<std::endl);
111     // Sets the current directory to the home dir
112     mCurrentDirectory =  std2wx(gimmick->GetHomeDirectory());
113
114      // Connect the AddProgress callback
115     gimmick->ConnectAddProgressObserver 
116      ( boost::bind( &WxGimmickView::OnAddProgress , this, _1 ) );
117
118     // Create the list of icons (mIcon)
119     CreateIconList();
120
121     // Global sizer
122     msizer = new wxBoxSizer(wxVERTICAL);
123
124     // Create the tool bar
125     CreateToolBar(); 
126     msizer->Add( mToolBar, 0, wxGROW, 0);
127
128     // Split part below toolbar into notebook for views and panel
129     // for preview, messages...
130     mSplitter = new wxSplitterWindow( this , -1);
131
132     // Notebook
133     mNotebook = new wxNotebook(mSplitter,
134                                -1, wxDefaultPosition, wxDefaultSize, 0);
135
136     //Gimmick
137     mGimmick=gimmick;
138
139     mSelectionMaxDimension = max_dim;
140     mSelectionMinDimension = min_dim;
141     
142     // Create the views
143     CreateTreeViews();
144
145     // Bottom panel 
146     mBottomPanel = new wxPanel(mSplitter,-1);
147     
148     mbottom_sizer = new wxBoxSizer(wxVERTICAL); //HORIZONTAL);
149     
150     
151     // Previewer
152     mViewer = new WxViewer(mBottomPanel, wxID_ANY, wxT("Gimmick! Viewer"),wxDefaultPosition, wxDefaultSize );
153         //pointers.push_back(new ImagePointerHolder(GetDefaultImage())
154         pointers.push_back(boost::shared_ptr<creaImageIO::ImagePointerHolder>(new ImagePointerHolder(GetDefaultImage())));
155
156         mViewer->SetImageVector(pointers);
157         mViewer->StartPlayer();
158
159
160     mbottom_sizer->Add(mViewer,1,wxGROW,1);
161     //    mViewer->Show();
162
163     mText = new wxStaticText(mBottomPanel, wxID_ANY, wxT("Welcome to Gimmick!"));
164     mbottom_sizer->Add(mText,0,wxGROW,0);
165
166           
167           
168     mBottomPanel->SetSizer(mbottom_sizer);
169
170     // Splitting
171     int hsize = size.GetHeight();
172
173     int top_minsize = 450;
174     int bottom_minsize = 50;
175
176     mSplitter->SetMinimumPaneSize( bottom_minsize );
177     mSplitter->SplitHorizontally( mNotebook, mBottomPanel, 
178                                   top_minsize);
179
180     msizer->Add( mSplitter, 1, wxGROW, 0);
181
182     mProgressDialog=0;
183     SetSizer( msizer );     
184     SetAutoLayout(true);
185     Layout();
186     //mListener=new Listener();
187     //mListener->ConnectObserver(boost::bind( &WxGimmickView::OnDriveMount, this, _1 ) );
188     //mListener->Create();
189    // mListener->Run();
190    // mListener->Pause();
191
192     mConstructed = true;
193   }
194   //======================================================================
195
196   //======================================================================
197   /// Destructor
198   WxGimmickView::~WxGimmickView()
199   {
200         // stop the viewer before application exit.
201     mViewer->StopPlayer();
202     GimmickDebugMessage(1,"WxGimmickView::~WxGimmickView"
203                         <<std::endl);
204         delete mIcon;
205         delete mViewer;
206     //if(mListener->IsAlive())   {        mListener->Delete();    }
207   }
208   //======================================================================
209   
210   //======================================================================
211   /// Creates the tool bar
212   void WxGimmickView::CreateToolBar()
213   {
214     long style = wxTB_HORIZONTAL | wxNO_BORDER | wxTB_TEXT;
215     mToolBar = new wxToolBar(this,-1,wxDefaultPosition,wxDefaultSize,
216                              style);
217
218     mToolAddFile = mToolBar->AddTool( TOOL_ADDFILES_ID, 
219                                       _T("Add file(s)"),
220                                       mIcon->GetBitmap(Icon_page_down),
221                                       _T("Add one or more file to database")
222                                       );
223     mToolAddDir = mToolBar->AddTool( TOOL_ADDDIR_ID, 
224                                       _T("Add folder"),
225                                       mIcon->GetBitmap(Icon_folder_down),
226                                       _T("Add the content of a folder to database")
227                                       );
228     mToolAddDatabase = mToolBar->AddTool( TOOL_ADDDATABASE_ID, 
229                                       _T("Open database"),
230                                       mIcon->GetBitmap(Icon_database_add),
231                                       _T("Open a local or distant database")
232                                       );
233     mToolRemove = mToolBar->AddTool( TOOL_REMOVE_ID, 
234                                       _T("Remove"),
235                                       mIcon->GetBitmap(Icon_remove),
236                                       _T("Remove selected items")
237                                       );
238     mToolSynchronize = mToolBar->AddTool( TOOL_SYNCHRONIZE_ID, 
239                                       _T("Synchronize"),
240                                       mIcon->GetBitmap(Icon_synchronize),
241                                       _T("Synchronizes the database with disk")
242                                       );
243     mToolHelp = mToolBar->AddTool( TOOL_HELP_ID, 
244                                       _T("Help"),
245                                       mIcon->GetBitmap(Icon_help),
246                                       _T("Open help window")
247                                       );
248     mToolSettings = mToolBar->AddTool( TOOL_SETTINGS_ID, 
249                                       _T("System settings"),
250                                       mIcon->GetBitmap(Icon_settings),
251                                       _T("Allows the modification of various system settings")
252                                       );
253     mToolTools = mToolBar->AddTool( TOOL_TOOLS_ID, 
254                                       _T("Tools"),
255                                       mIcon->GetBitmap(Icon_tools),
256                                       _T("Applies tools to images")
257                                       );
258     mToolAddFile = mToolBar->AddTool( TOOL_CREATEDB_ID, 
259                                       _T("Create database"),
260                                       mIcon->GetBitmap(Icon_create_database),
261                                       _T("Create DB from an Attributes Descriptor file")
262                                       );
263 #if defined(BUILD_PACS)
264         mToolAddFile = mToolBar->AddTool( TOOL_PACS_ID, 
265                                       _T("PACS Connection,"),
266                                       mIcon->GetBitmap(Icon_create_database),
267                                       _T("Echo, Find and Get to a PACS")
268                                       );
269 #endif
270     //const wxBitmap& bitmap1, const wxString& shortHelpString = "", wxItemKind kind = wxITEM_NORMAL)
271
272     mToolBar->Realize();
273   }
274   //======================================================================
275
276  
277   //======================================================================
278   /// Create the tree view for TreeHandler provided
279   void WxGimmickView::CreateTreeView( TreeHandler* h)
280   {
281     std::string name(h->GetTree().GetAttribute("Name"));
282     GimmickMessage(2,"Creating the tree view for '"<<
283                    name<<"'"<<std::endl);
284     // Create the WxTreeView
285     WxTreeView* view = new WxTreeView(h, this, mNotebook, -1);
286
287     // TO DO : TEST THAT A VIEW WITH SAME NAME IS NOT
288     // ALREADY IN THE MAP
289     GetTreeViewMap()[name] = view;
290
291     // Add Notebook page
292     mNotebook->AddPage( view, crea::std2wx(name) );
293         
294   }
295
296   //======================================================================
297   void WxGimmickView::GetSelectedImages(std::vector<vtkImageData*>& s, int dim)
298   {
299         std::vector<std::string> files;
300         GetTreeViewMap()[crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection()))]->GetSelectedAsString(files);
301         ReadImagesNotThreaded(s, files, dim);
302   }
303
304   //======================================================================
305   void WxGimmickView::GetSelectedImagesInVector(std::vector<vtkImageData*>& s, int dim)
306   {
307         std::vector<std::string> files;
308         GetTreeViewMap()[crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection()))]->GetSelectedAsString(files);
309         ReadImagesNotThreadedInVector(s, files, dim);
310   }
311   //======================================================================
312
313   //======================================================================
314   void WxGimmickView::GetSelectedFiles(std::vector<std::string>& s)
315   {
316         GetTreeViewMap()[crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection()))]->GetSelectedAsString(s);
317   }
318   //======================================================================
319
320   //======================================================================
321   void WxGimmickView::GetImages(int dim, 
322                                 const std::vector<std::string>& files, 
323                                 std::vector<vtkImageData*>& s)
324   {
325         ReadImagesNotThreaded(s,files,dim);
326   }
327   //======================================================================
328
329
330   //=================================================
331   void WxGimmickView::CreateIconList()
332   {
333     // Size of the icons;
334     int size = 16;
335
336     wxIcon icons[20];
337     // should correspond to Icon_xxx enum
338     icons[Icon_accept]          = wxIcon(accept_xpm);
339     icons[Icon_add]             = wxIcon(add_xpm);
340     icons[Icon_folder_down]     = wxIcon(folder_down_xpm);
341     icons[Icon_page_down]       = wxIcon(page_down_xpm);
342     icons[Icon_remove]          = wxIcon(remove_xpm);
343     icons[Icon_database_add]    = wxIcon(database_add_xpm);
344     icons[Icon_help]            = wxIcon(help_xpm);
345     icons[Icon_synchronize]     = wxIcon(synchronize_xpm);
346     icons[Icon_create_database] = wxIcon(create_database_xpm);
347     icons[Icon_settings]        = wxIcon(settings_xpm);
348     icons[Icon_tools]           = wxIcon(tools_xpm);
349
350     //   unsigned int NbIcons = 8;
351     // Make an image list containing small icons
352     mIcon = new wxImageList(size,size,true);
353     
354     // Make all icons the same size = size of the first one
355     int sizeOrig = icons[0].GetWidth();
356     for ( size_t i = 0; i < icon_number; i++ )
357       {
358         if ( size == sizeOrig )
359           {
360             mIcon->Add(icons[i]);
361           }
362         else
363           {
364             mIcon->Add(wxBitmap(wxBitmap(icons[i]).ConvertToImage().Rescale(size, size)));
365           }
366       }
367   }
368   //=================================================
369
370
371   //=================================================
372   void WxGimmickView::OnAddFiles(wxCommandEvent& event)
373   {
374     mViewer->StopPlayer();
375     long style = wxOPEN | wxFILE_MUST_EXIST | wxFD_MULTIPLE;
376     std::string wc("*");
377     wxFileDialog* FD = new wxFileDialog( 0, 
378                                          _T("Select file"),
379                                          _T(""),
380                                          _T(""),
381                                          crea::std2wx(wc),
382                                          style,
383                                          wxDefaultPosition);
384     
385     if (FD->ShowModal()==wxID_OK)
386       {
387         wxBusyCursor busy;
388
389         wxArrayString files;
390         FD->GetPaths(files);
391         unsigned int i;
392         std::vector<std::string> filenames;
393         for (i=0;i<files.GetCount();++i)
394         {
395           filenames.push_back(wx2std(files[i]));
396           GimmickMessage(2,"Adding File "<<files[i]<<"."<<std::endl);
397         }
398
399         mProgressDialog = 
400           new wxProgressDialog(_T("Adding file(s)"),
401                                _T(""),
402                                1000,
403                                this,
404                                wxPD_ELAPSED_TIME |
405                                // wxPD_ESTIMATED_TIME |
406                                // wxPD_REMAINING_TIME |
407                                wxPD_CAN_ABORT );
408
409         // TO DO : select the current tree handler
410         mGimmick->AddFiles(crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection())),filenames);
411
412         mProgressDialog->Pulse(_T("Updating view..."));
413
414         UpdateTreeViewLevel(crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection())),1);
415         delete mProgressDialog;
416         DisplayAddSummary();    
417
418       }
419         mViewer->StartPlayer(); 
420   }
421   //=================================================
422
423   //=================================================
424   void WxGimmickView::OnAddDir(wxCommandEvent& event)
425   {
426     mViewer->StopPlayer();
427         std::string name = crea::wx2std(mNotebook->GetCurrentPage()->GetName());
428     long style = wxDD_DEFAULT_STYLE | wxDD_DIR_MUST_EXIST;
429     wxDirDialog* FD = 
430          new wxDirDialog( 0, 
431                        _T("Select directory"),
432                        mCurrentDirectory,
433                        style);
434     
435     if (FD->ShowModal()==wxID_OK)
436     {
437         std::string dirname = wx2std (FD->GetPath());
438         bool recurse =  isNeedRecursive(dirname);
439         if (recurse)
440         {
441              recurse = wxMessageBox(_T("Recurse into sub-directories ?"), _T("Scan directory"), wxYES_NO,this ) == wxYES ? true : false;
442         }
443
444                 wxBusyCursor busy;
445                 wxString title(_T("Adding directory"));
446                 if (recurse) 
447                 title = _T("Adding directory (recursive)");
448                 mProgressDialog = 
449                 new wxProgressDialog(_T("Adding directory"),
450                                         _T(""),
451                                         NumberFilesToAdd(dirname,recurse),
452                                         this,
453                                         wxPD_ELAPSED_TIME | 
454                                         wxPD_SMOOTH |
455                                         // wxPD_ESTIMATED_TIME |
456                                         // wxPD_REMAINING_TIME |
457                                         wxPD_CAN_ABORT );
458
459                 mCurrentDirectory = FD->GetPath();  
460                 mGimmick->AddDir(crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection())),dirname,recurse);
461                 mProgressDialog->Pulse(_T("Updating view..."));
462
463                 UpdateTreeViewLevel(crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection())),1);
464                 delete mProgressDialog;
465                 DisplayAddSummary();
466           }
467     mViewer->StartPlayer();
468         delete FD;
469   }
470
471
472   //=================================================
473   // Determines number of files potentially to add to database
474    int WxGimmickView::NumberFilesToAdd(const std::string &dirpath, bool recursive)
475   {
476            int nb = 0;
477            if ( !boost::filesystem::exists( dirpath ) ) return nb;
478            boost::filesystem::directory_iterator end_itr; // default construction yields past-the-end
479            for ( boost::filesystem::directory_iterator itr( dirpath );  itr != end_itr;  ++itr )
480           {
481                 // If is directory & recurse : do recurse
482                 if ( boost::filesystem::is_directory(itr->status()) )
483                 {
484                         if (recursive) 
485                         {
486                                 nb += NumberFilesToAdd(itr->string(), recursive);
487                         }
488                 }
489                 else
490                 {
491                         nb++;
492                 }
493           }
494         return nb;
495   }
496
497    //=================================================
498    // Test a directory to know if contains sub-directory to analyze
499   bool WxGimmickView::isNeedRecursive(std::string i_name)
500   {
501       boost::filesystem::directory_iterator iter(i_name), end_iter;
502           bool bfindir = false;
503                   for(; iter != end_iter; ++iter)
504                   {
505                           if(boost::filesystem::is_directory(*iter))
506                           {
507                                   return true;
508                           }
509                   }
510                   return false;
511   }
512   //=================================================
513
514   //=================================================
515   void WxGimmickView::OnSelectionChange(const std::vector<tree::Node*>& sel, bool isSelection, int selection, bool needProcess)
516   {      
517     GimmickDebugMessage(5,
518                         "WxGimmickView::OnSelectionChange"
519                         <<std::endl);
520     wxBusyCursor busy;
521         bool valid=true;
522         
523         if(sel.size()==0)
524         {
525                 valid= ValidateSelected(NULL,
526                                 mSelectionMinDimension,
527                                 mSelectionMaxDimension );
528         }
529         else if(needProcess)
530         {
531                 ResetExtent();
532                 std::vector<tree::Node*>::const_iterator i;
533                 for(i=sel.begin();i!=sel.end()&&valid;++i)
534                 {
535                         valid= ValidateSelected((*i),
536                                 mSelectionMinDimension,
537                                 mSelectionMaxDimension );
538                 }
539         }
540         else if(isSelection)
541         {
542                 valid= ValidateSelected(sel.front(),
543                                 mSelectionMinDimension,
544                                 mSelectionMaxDimension );
545         }
546         else
547         {
548                 ResetExtent();
549                 std::vector<tree::Node*>::const_iterator i;
550                 for(i=sel.begin();i!=sel.end()&&valid;++i)
551                 {
552                         valid= ValidateSelected((*i),
553                                 mSelectionMinDimension,
554                                 mSelectionMaxDimension );
555                 }
556         }
557         mText->SetLabel(crea::std2wx(GetMessage()));
558     /*if(valid)
559       {
560         ReadImageThreaded(sel);
561       }
562     else
563       {
564                   ClearSelection();
565       }*/
566         ReadImageThreaded(sel);
567    }
568
569   //==================================================
570
571   //==================================================
572   ///Reads Images (Threaded)
573   void WxGimmickView::ReadImageThreaded(const std::vector<tree::Node*>& sel)
574   {     
575    GimmickDebugMessage(5,
576                        "ReadImageThreaded"
577                        <<std::endl);
578    int maxprio = GetMaximalPriority();
579    int prio = maxprio + 2000;
580
581    if(sel.size()>0)
582    {
583    //First load the selected images
584    mCurImageItemToShow = sel.front();
585    pointers.clear();
586    int index = 0;
587    std::vector<tree::Node*>::const_iterator selected;
588    for(selected=sel.begin();selected!=sel.end();++selected)
589      {
590        GimmickDebugMessage(5,
591                            "Requesting image from selected "
592                            <<(*selected)->GetAttribute("FullFileName")
593                            <<std::endl);
594            //ImagePointerHolder* ph=new ImagePointerHolder(GetDefaultImage());
595            boost::shared_ptr<ImagePointerHolder> ph(new ImagePointerHolder(GetDefaultImage()));
596            pointers.push_back(ph);
597        RequestReading(*selected,prio,index,ph);
598        //       AddEntryToMap(*selected);
599        prio--;
600        index++;
601      }
602         mViewer->SetImageVector(pointers);
603         //Going up
604         prio = maxprio + 20;
605         std::vector<tree::Node*> up;
606         GetTreeViewMap()[crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection()))]->GetNodes(up,true);
607         std::vector<tree::Node*>::iterator iterUp;
608         for(iterUp=up.begin();iterUp!=up.end();++iterUp)
609         {
610                 GimmickDebugMessage(5,
611                                 "Requesting image from neighbors up "
612                                 <<(*iterUp)->GetAttribute("FullFileName")
613                                 <<std::endl);
614 //              ImagePointerHolder* ph=new ImagePointerHolder(GetDefaultImage());
615                 boost::shared_ptr<ImagePointerHolder> ph(new ImagePointerHolder(GetDefaultImage()));
616                 RequestReading(*iterUp,prio,-1,ph);
617                 //              AddEntryToMap(*iterUp);
618                 prio--;
619                 if (prio == maxprio) break;
620         }
621
622         //Going down
623         prio = maxprio + 19;
624         std::vector<tree::Node*> down;
625         GetTreeViewMap()[crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection()))]->GetNodes(down,false);
626         std::vector<tree::Node*>::iterator iterDown;
627         for(iterDown=down.begin();iterDown!=down.end();++iterDown)
628         {
629                 GimmickDebugMessage(5,
630                                 "Requesting image from neighbors down "
631                                 <<(*iterDown)->GetAttribute("FullFileName")
632                                 <<std::endl);
633                 //ImagePointerHolder* ph=new ImagePointerHolder(GetDefaultImage());
634                 boost::shared_ptr<ImagePointerHolder> ph(new ImagePointerHolder(GetDefaultImage()));
635                 RequestReading(*iterDown,prio,-1,ph);
636                 //              AddEntryToMap(*iterDown);
637                 prio--;
638                 if (prio == maxprio) break;
639         }
640    }
641    else
642    {
643            pointers.clear();
644            //ImagePointerHolder* ph=new ImagePointerHolder(GetDefaultImage());
645            boost::shared_ptr<ImagePointerHolder> ph(new ImagePointerHolder(GetDefaultImage()));
646            pointers.push_back(ph);
647            mViewer->SetImageVector(pointers);
648    }
649   }
650
651   //==================================================
652
653   //==================================================
654
655   //==================================================
656    void  WxGimmickView::OnInternalIdle()
657    {
658      if (!mConstructed) return;
659      static bool first_time = true;
660      if (false)
661      {
662        first_time = false;
663      }
664    //   GimmickMessage(1,"WxGimmickView : Refresh viewer"<<std::endl);
665         //  mViewer->StartPlayer();
666      if(mViewer)
667      {
668         mViewer->RefreshIfNecessary();
669      }
670   }
671
672    //==================================================
673
674   //==================================================
675    void  WxGimmickView::ClearSelection()
676    {
677         pointers.clear();
678         pointers.push_back(boost::shared_ptr<creaImageIO::ImagePointerHolder>(new ImagePointerHolder(GetDefaultImage())));
679         //pointers.push_back(new ImagePointerHolder(GetDefaultImage()));
680         mViewer->SetImageVector(pointers);
681         mViewer->RefreshIfNecessary();
682         ResetExtent();
683   }
684
685   //=================================================
686  
687   //=================================================
688   void WxGimmickView::OnRemove(wxCommandEvent& event)
689   {
690         //TODO Select current tree handler       
691      wxBusyCursor busy;
692          std::string remove;
693          mGimmick->GetSetting(SETTINGS_REMOVE_PATIENT_DISPLAY,remove);
694          GetTreeViewMap()[crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection()))]->RemoveSelected(remove);
695          mGimmick->UpdateSetting(SETTINGS_REMOVE_PATIENT_DISPLAY,remove);
696      ClearSelection();
697   }
698   //=================================================
699
700
701   //=================================================
702   void WxGimmickView::AddIgnoreFile(tree::Node* toRemove)
703   {
704      mGimmick->RemoveFile(crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection())),toRemove);
705    //  GetTreeViewMap()[crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection()))]->UpdateLevel(1);
706   }
707
708   //=================================================
709   void WxGimmickView::CopyFiles(const std::vector<std::string>& filenames)
710   {
711      mGimmick->CopyFiles(filenames, crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection())));
712      wxMessageBox(std2wx("The selected files have been copied"),_T("Copy files"),wxOK,this);
713   }
714
715    //=================================================
716   void WxGimmickView::AddDir(std::string dirName)
717   {
718      mProgressDialog = new wxProgressDialog(_T("Adding directory"),_T(""),1000,this,wxPD_ELAPSED_TIME |wxPD_CAN_ABORT );
719      mCurrentDirectory = crea::std2wx(dirName);
720      mGimmick->AddDir(crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection())),dirName,true);
721      mProgressDialog->Pulse(_T("Updating view..."));
722
723      UpdateTreeViewLevel(crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection())),1);
724      delete mProgressDialog;
725      DisplayAddSummary();
726   }
727
728    //=================================================
729   void WxGimmickView::OnSynchronize(wxCommandEvent& event)
730   {       
731     wxBusyCursor busy;
732     const wxString choices[] = { _T("Check database for files deletion and addition and give a report."), 
733                                 _T("Check database for files deletion, addition and attributes change. Then give a report."), 
734                                 _T("Repair database (remove deleted files and add new files)."), 
735                                 _T("Repair database (remove deleted files, add new files and reset changed attributes).") } ;
736
737     wxSingleChoiceDialog dialog(this,
738                                 _T("Select one of the following synchronization actions:\n")
739                                 _T("Please note that, due to the heavy amount of operations required, this action might take a while."),
740                                 _T("Synchronization Settings"),
741                                 WXSIZEOF(choices), choices);
742
743     //dialog.SetSelection(0);
744
745     if (dialog.ShowModal() == wxID_OK)
746     {
747                         wxBusyCursor busy;
748         int sel=dialog.GetSelection();
749         bool repair=false;
750         bool checkAttributes=false;
751         if(sel==2 || sel==3){repair=true;}
752         if(sel==1 || sel==3){checkAttributes=true;}
753         std::string mess=mGimmick->Synchronize(crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection())),repair, checkAttributes);
754         wxMessageBox(std2wx(mess),_T("Synchronization result"),wxOK,this);
755         if(sel==2 || sel==3){
756                 GetTreeViewMap()[crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection()))]->UpdateLevel(1);
757         }
758                 
759     }
760   }
761   //=================================================
762
763   //=================================================
764   void WxGimmickView::OnSettings(wxCommandEvent& event)
765   {
766     wxDialog* dial= new wxDialog (this,-1,_T("System Settings"),wxDefaultPosition, wxSize(450,220));
767     wxBoxSizer  *siz = new wxBoxSizer(wxVERTICAL);
768     // Notebook
769     wxNotebook* nb= new wxNotebook(dial, -1, wxDefaultPosition, wxDefaultSize, 0);
770     
771     siz->Add( nb,1,wxGROW  ,0);  
772     CreateSettingsDialog(nb,dial);
773     dial->SetSizer(siz);
774     dial->ShowModal();
775   }
776
777   //=================================================
778   void WxGimmickView::OnImportExport(wxCommandEvent &Event)
779   {
780         wxBusyCursor busy;
781         // Test if one image is selected => export
782         // if not =>import
783     if (GetTreeViewMap()[crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection()))])
784         {
785                 ExportImages();
786         }
787         else
788         {
789                 ImportImages();
790         }
791   }
792
793   void WxGimmickView::ExportImages()
794   {
795                 //Archive selection: name, emplacement
796                 //same process than copy local but to a zip
797                 // if settings are yes "always ask for descriptor addition", ask
798                 // if settings are yes, adding descriptor
799   }
800
801   void WxGimmickView::ImportImages()
802   {
803                 //Find the *.zip
804                 //dezip
805                 // Contain a descriptor.text
806                 // create a new database, and add to database
807                 // if not, add to current database
808                 // 
809   }
810
811   //=================================================
812   //AndresDonadio
813   void WxGimmickView::OnTools(wxCommandEvent& event)
814   {
815         mViewer->StopPlayer();
816                 
817         wxDialog* dial = new wxDialog (this,-1,_T("Tools"),wxDefaultPosition, wxSize(550,350));
818
819         wxSizer* buttonsSizer = dial->CreateSeparatedButtonSizer(wxOK|wxCANCEL);
820         wxNotebook* nb= new wxNotebook(dial, -1, wxDefaultPosition, wxDefaultSize, 0);
821         wxBoxSizer *dialSizer = new wxBoxSizer(wxVERTICAL);     
822         dialSizer->Add(nb,1,wxGROW,0);
823         dialSizer->Add(buttonsSizer,0,wxGROW);
824
825 #if defined(BUILD_BRUKER)
826         //First page: Bruker Image Reader
827         WxGimmickTools * gimmickTools = new WxGimmickTools(nb, mCurrentDirectory);
828         nb->AddPage( gimmickTools, _T("Bruker Image Reader") );
829 #endif
830
831         dial->SetSizer(dialSizer, true);
832         dial->Layout();
833         dial->ShowModal();
834
835         if (dial->GetReturnCode() == wxID_OK)
836         {
837 #if defined(BUILD_BRUKER)
838                 if (nb->GetSelection()==0)//Selection: Bruker Image Reader
839                 {
840                         std::string inputDir  = crea::wx2std(gimmickTools->getInputDir());
841                         std::string outputDir = crea::wx2std(gimmickTools->getOutputDir());
842                         
843                         bool addToDB = gimmickTools->getAddToDBCheckBoxValue();
844
845                         if (inputDir.compare("")!=0 && outputDir.compare("")!=0)
846                         {
847                                 if ( wxMessageBox(_T("Depending on the amount of Data the process can take between 1 and 5 minutes. Do you want to continue?"),
848                                                   _T("Please confirm"), wxICON_QUESTION | wxYES_NO) == wxYES )
849                                 {
850                                         Bruker2Dicom b2d;    
851                                         b2d.SetInputDirectory(inputDir);
852                                         b2d.SetOutputDirectory(outputDir);
853                                         b2d.SetConvertModeToDicom();
854                                         b2d.verbose=false;
855                                         b2d.Execute();
856
857                                         if (addToDB)
858                                         {
859                                                 mProgressDialog = new wxProgressDialog(_T("Adding directory"),_T(""),1000,this,wxPD_ELAPSED_TIME |wxPD_CAN_ABORT );
860                                                 mCurrentDirectory = gimmickTools->getOutputDir();
861                                                 mGimmick->AddDir(crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection())),outputDir,true);
862                                                 mProgressDialog->Pulse(_T("Updating view..."));
863
864                                                 UpdateTreeViewLevel(crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection())),1);
865                                                 delete mProgressDialog;
866                                                 DisplayAddSummary();
867                                         }       
868                                 }
869                         }
870                         else
871                         {
872                                 wxMessageBox(_T("One or both of the directory fields are empty"),_T("Empty Fields"),wxOK,this);
873                         }
874         }
875         delete gimmickTools;
876 #endif
877         }
878         mViewer->StartPlayer();
879   }
880
881   //=================================================
882
883   void WxGimmickView::CreateSettingsDialog(wxNotebook* nb, wxDialog* dial)
884   {
885           //First page: Customization of configurations
886           //Copy Path string
887           std::string cp;
888           mGimmick->GetSetting(SETTINGS_COPY_PATH,cp);
889           //Database Path String
890           std::string dp;
891           mGimmick->GetSetting(SETTINGS_DBPATH,dp);
892           //Syncronization Event String
893           std::string se;
894           mGimmick->GetSetting(SETTINGS_SYNC_EVENT,se);
895           //Syncronization Frequency String
896           std::string sf;
897           mGimmick->GetSetting(SETTINGS_SYNC_FREQ,sf);
898
899           WxCustomizeConfigPanel * customConfig=new WxCustomizeConfigPanel(nb,dial,this,cp,dp,se,sf);
900
901           nb->AddPage( customConfig, crea::std2wx("Customize Configuration") );
902
903           //Second page: Creation of Databases
904           /*wxPanel* databaseCreation=new wxPanel(nb);
905           nb->AddPage( databaseCreation, crea::std2wx("Create Database") );*/
906
907           //Second page (temporary): Connection to PACS
908           WxPACSConnectionPanel* pacs=new WxPACSConnectionPanel(nb,dial, this);
909           nb->AddPage( pacs, crea::std2wx("Connect to PACS") );
910
911           //Third page: CD/DVD Watch
912           WxListenerPanel* cdWatch=new WxListenerPanel(nb,dial, this,true);//, mListener->IsPaused());
913           nb->AddPage( cdWatch, crea::std2wx("CD/DVD") );
914
915           //Fourth page: Selection of attributes to show
916           std::vector<std::string> shown;
917           std::vector<std::string> nShown;
918           GetTreeViewMap()[crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection()))]->GetAttributes(shown,nShown,1);
919           int nLev=GetTreeViewMap()[crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection()))]->GetNumberOfLevels();
920           WxAttributeSelectionPanel* attSelection=new WxAttributeSelectionPanel(nb,dial,this,shown,nShown,nLev);
921           nb->AddPage( attSelection, crea::std2wx("Selection of Attributes") );
922   }
923
924   //===================================================================
925   void WxGimmickView::GetVisibleAttributes(std::vector<std::string>& shown, 
926           std::vector<std::string>& nShown, int level)
927   {
928           GetTreeViewMap()[crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection()))]->GetAttributes(shown,nShown,level);
929   }
930
931   //===================================================================
932   void WxGimmickView::OnAttributesChanged(const std::vector<std::string>& nShown, int level)
933   {
934           GetTreeViewMap()[crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection()))]->SetNonVisibleAttributes(nShown,level);
935           std::vector<std::string> n=nShown;
936           GetTreeViewMap()[crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection()))]->CreateCtrl(n,level);
937   }
938   //===================================================================
939   void WxGimmickView::OnSaveSettingsCallback(const std::string& copyPath,
940           const std::string& dbPath,
941           const std::string& syncEvent,
942           const std::string& syncFreq)
943   {
944           mGimmick->UpdateSetting(SETTINGS_COPY_PATH,copyPath);
945           mGimmick->UpdateSetting(SETTINGS_DBPATH,dbPath);
946           mGimmick->UpdateSetting(SETTINGS_SYNC_EVENT,syncEvent);
947           mGimmick->UpdateSetting(SETTINGS_SYNC_FREQ,syncFreq);
948   }
949
950   //===================================================================
951   void WxGimmickView::OnListenerCallback(const std::string& drive, bool addFiles, bool removeFiles)
952   {
953          mListener->SetMonitoredDrive(drive);
954          mListener->SetAddFilesState(addFiles);
955          mListener->SetRemoveFilesState(removeFiles);
956   }
957
958   //========================================================================
959
960   void WxGimmickView::OnDriveMount(bool mount)
961   {
962           GimmickMessage(1, "Gimmick::OnDriveMount"<<std::endl);
963           std::string drive;
964           mListener->GetMonitoredDrive(drive);
965           
966           if(mount)
967           {
968                 mViewer->StopPlayer();
969                 wxBusyCursor busy;
970                 wxString title(_T("Adding drive"));
971                 mProgressDialog = 
972                 new wxProgressDialog(_T("Adding drive"),
973                                         _T(""),
974                                         1000,
975                                         this,
976                                         wxPD_ELAPSED_TIME |
977                                         //                             wxPD_ESTIMATED_TIME | 
978                                         //                             wxPD_REMAINING_TIME |
979                                         wxPD_CAN_ABORT );
980                 mCurrentDirectory = crea::std2wx(drive);
981                 mGimmick->AddDir(crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection())),drive,true);
982                 mProgressDialog->Pulse(_T("Updating view..."));
983                 
984                 UpdateTreeViewLevel(crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection())),1);
985                 delete mProgressDialog;
986                 DisplayAddSummary();
987                 mViewer->StartPlayer();  
988           }
989           else
990           {  
991                   mGimmick->DeleteDrive(drive);
992                   UpdateTreeViewLevel(crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection())),1);
993           } 
994   }
995
996    //========================================================================
997
998   void WxGimmickView::StartListeningThread()
999   {
1000           mListener->Resume();
1001   }
1002
1003    //========================================================================
1004
1005   void WxGimmickView::StopListeningThread()
1006   {
1007           mListener->Pause();
1008   }
1009
1010   //========================================================================
1011   void WxGimmickView::CreateEditFieldsDialog(tree::Node* node, std::vector<std::string> names, std::vector<std::string> keys)
1012   {
1013     wxDialog* dial= new wxDialog (this,-1,crea::std2wx("Edit Fields for node "+node->GetLabel()),wxDefaultPosition, wxSize(350,155));
1014     wxBoxSizer  *siz = new wxBoxSizer(wxVERTICAL);
1015     WxEditFieldsPanel* ef = new WxEditFieldsPanel(dial, dial, this, node, names, keys);
1016
1017     siz->Add( ef,1,wxGROW  ,0); 
1018     dial->SetSizer(siz);
1019     dial->ShowModal();  
1020   }
1021
1022  //========================================================================
1023   void WxGimmickView::DumpTags(std::string i_filename)
1024   {
1025     WxDumpPanel* pan= new WxDumpPanel (this,i_filename);
1026     pan->ShowModal();  
1027   }
1028
1029   //========================================================================
1030   void WxGimmickView::ExportToStorage(const std::vector<std::string> i_filenames)
1031   {
1032         std::vector<std::string> storages;
1033         Gimmick::TreeHandlerMapType::iterator it = mGimmick->GetTreeHandlerMap().begin();
1034         for(;it != mGimmick->GetTreeHandlerMap().end(); it++)
1035         {
1036                 storages.push_back(it->first);
1037         }
1038
1039     WxExportDlg* exp= new WxExportDlg(this,storages);
1040         if ( exp->ShowModal() ==ID_EXPORT_OK)
1041         {
1042                 std::string storage = exp->GetStorage();
1043                 mProgressDialog = 
1044             new wxProgressDialog(_T("Adding file(s)"),
1045                                _T(""),
1046                                1000,
1047                                this,
1048                                wxPD_ELAPSED_TIME |
1049                                // wxPD_ESTIMATED_TIME |
1050                                // wxPD_REMAINING_TIME |
1051                                wxPD_CAN_ABORT );
1052                 mGimmick->AddFiles(storage,i_filenames);
1053                 mProgressDialog->Pulse(_T("Updating view..."));
1054                 UpdateTreeViewLevel(storage,1);
1055                 delete mProgressDialog;
1056                 DisplayAddSummary();    
1057         }
1058   }
1059
1060
1061
1062   //========================================================================
1063   void WxGimmickView::OnFieldsEdited(tree::Node* node, const std::string& name, const std::string& key, const std::string& val)
1064   {
1065      mGimmick->EditField(node, crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection())), name, key, val);
1066      UpdateTreeViewLevel(crea::wx2std(mNotebook->GetPageText(mNotebook->GetSelection())),1);
1067   }
1068
1069   //=================================================
1070   /// AddProgress Gimmick callback
1071   void WxGimmickView::OnAddProgress( Gimmick::AddProgress& p)
1072   {
1073     char mess[200];
1074     sprintf(mess,"%i dirs : %i files :\n            %i handled - %i added",
1075            p.GetNumberScannedDirs(),
1076            p.GetNumberScannedFiles(),
1077            p.GetNumberHandledFiles(),
1078            p.GetNumberAddedFiles());
1079     //    std::cout << "OnAddProgress "<<mess<<std::endl;
1080     wxString s(wxString::From8BitData(mess));
1081     //  std::cout << "Pulse"<<std::endl;
1082     if (!mProgressDialog->Pulse(s)) 
1083       {
1084         p.SetStop();
1085       }
1086     //  std::cout << "OnAddProgress ok"<<std::endl;
1087   }
1088   //=================================================
1089
1090   //=================================================
1091   void WxGimmickView::DisplayAddSummary()
1092   {
1093     const Gimmick::AddProgress& p = mGimmick->GetAddProgress();
1094     std::stringstream mess;
1095     mess << "Dirs \tscanned\t: " << p.GetNumberScannedDirs()  << "\n";
1096     mess << "Files\tscanned\t: " << p.GetNumberScannedFiles() << "\n";
1097     mess << "Files\thandled\t: " << p.GetNumberHandledFiles() << "\n\n";
1098     mess << "Files\tadded  \t: " << p.GetNumberAddedFiles()   << "\n\n";
1099     wxMessageBox(std2wx(mess.str()),_T("Addition result"),wxOK,this);
1100   }
1101
1102   ////////////////////////////////////////////////
1103   // Add a DB to application                    //
1104   // @param event : WxEvent                     //
1105   // @return : -                                //
1106   ////////////////////////////////////////////////
1107   void WxGimmickView::OnAddDB(wxCommandEvent& event)
1108   {
1109           //Select DB
1110           long style = wxDD_DEFAULT_STYLE | wxDD_DIR_MUST_EXIST;
1111           std::string wc("*.sqlite3*");
1112           wxFileDialog* FD = new wxFileDialog( 0, 
1113                                          _T("Select file"),
1114                                          _T(""),
1115                                          _T(""),
1116                                          crea::std2wx(wc),
1117                                          style,
1118                                          wxDefaultPosition);
1119     
1120     if (FD->ShowModal()==wxID_OK)
1121         {
1122                 wxBusyCursor busy;
1123                 wxArrayString files;
1124                 FD->GetPaths(files);
1125                 std::stringstream st;
1126                 for(int i = 0; i< files.size(); i++)
1127                 {
1128                         //get name of DB (file name)
1129                   size_t pos = files[i].find_last_of(_T("\\"));
1130                   std::string name = crea::wx2std(files[i].substr(pos+1));
1131                   pos = name.find_last_of(".");
1132                   name = name.substr(0,pos);
1133                   //create TreeHandler
1134                   mGimmick->addDB(name, crea::wx2std(files[i]));
1135                   //create TreeView
1136                   CreateSingleTreeView(name);
1137                 }
1138         }
1139   }
1140     ////////////////////////////////////////////////////
1141   // Create a DB from an Attributes Descriptor files  //
1142   // @param event : WxEvent                                     //
1143   // @return : -                                                //
1144   //////////////////////////////////////////////////
1145   void WxGimmickView::OnCreateDB(wxCommandEvent& event)
1146   {
1147         //  PACSConnection("");
1148         WxDescriptorPanel * DescriptorPan = new WxDescriptorPanel(this, mGimmick->GetHomeDirectory());
1149         DescriptorPan->Layout();
1150         if ( DescriptorPan->ShowModal() == ID_DSCP_APPLY)
1151         {
1152                 wxBusyCursor busy;
1153                 std::string file(DescriptorPan->GetDescriptor());
1154                 if (!file.empty())
1155                 {
1156                         size_t pos = file.find_last_of("\\");
1157                         std::string name = file.substr(pos+1);
1158                         std::string directory = file.substr(0,pos);
1159                         pos = name.find_last_of(".");
1160                         name = name.substr(0,pos);
1161                         //get directory to store DB
1162                         directory +=  "\\" + name + ".sqlite3";
1163                         //create createDB
1164                         mGimmick->createDB(name, file,directory);
1165                         //create TreeHandler
1166                         mGimmick->addDB(name, directory);
1167                         //create TreeView
1168                         CreateSingleTreeView(name);
1169                 }
1170         }
1171   }
1172
1173    //=================================================
1174
1175    //=================================================
1176   BEGIN_EVENT_TABLE(WxGimmickView, wxPanel)
1177     EVT_TOOL(TOOL_CREATEDB_ID, WxGimmickView::OnCreateDB)
1178     EVT_TOOL(TOOL_ADDFILES_ID, WxGimmickView::OnAddFiles)
1179     EVT_TOOL(TOOL_ADDDIR_ID, WxGimmickView::OnAddDir)
1180     EVT_TOOL(TOOL_ADDDATABASE_ID, WxGimmickView::OnAddDB)
1181     EVT_TOOL(TOOL_REMOVE_ID, WxGimmickView::OnRemove)
1182     EVT_TOOL(TOOL_SYNCHRONIZE_ID, WxGimmickView::OnSynchronize)
1183     EVT_TOOL(TOOL_SETTINGS_ID, WxGimmickView::OnSettings)
1184     EVT_TOOL(TOOL_TOOLS_ID, WxGimmickView::OnTools)
1185   END_EVENT_TABLE()
1186   //=================================================
1187
1188 } // EO namespace creaImageIO
1189