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