]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/view/listWx.cxx
Code cleaning done
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / creaButtonContainer / view / listWx.cxx
index facd7f02ea39638e0c87342c72b97c04689ebc32..411644c1fb74dc707a68b0fd168b9e9c48b1f667 100644 (file)
@@ -1,28 +1,27 @@
 /*# ---------------------------------------------------------------------
-#
-# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
-#                        pour la Sant�)
-# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
-# Previous Authors : Laurent Guigues, Jean-Pierre Roux
-# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
-#
-#  This software is governed by the CeCILL-B license under French law and
-#  abiding by the rules of distribution of free software. You can  use,
-#  modify and/ or redistribute the software under the terms of the CeCILL-B
-#  license as circulated by CEA, CNRS and INRIA at the following URL
-#  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
-#  or in the file LICENSE.txt.
-#
-#  As a counterpart to the access to the source code and  rights to copy,
-#  modify and redistribute granted by the license, users are provided only
-#  with a limited warranty  and the software's author,  the holder of the
-#  economic rights,  and the successive licensors  have only  limited
-#  liability.
-#
-#  The fact that you are presently reading this means that you have had
-#  knowledge of the CeCILL-B license and that you accept its terms.
-# ------------------------------------------------------------------------ */
-
+ #
+ # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
+ #                        pour la Sant�)
+ # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
+ # Previous Authors : Laurent Guigues, Jean-Pierre Roux
+ # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
+ #
+ #  This software is governed by the CeCILL-B license under French law and
+ #  abiding by the rules of distribution of free software. You can  use,
+ #  modify and/ or redistribute the software under the terms of the CeCILL-B
+ #  license as circulated by CEA, CNRS and INRIA at the following URL
+ #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
+ #  or in the file LICENSE.txt.
+ #
+ #  As a counterpart to the access to the source code and  rights to copy,
+ #  modify and redistribute granted by the license, users are provided only
+ #  with a limited warranty  and the software's author,  the holder of the
+ #  economic rights,  and the successive licensors  have only  limited
+ #  liability.
+ #
+ #  The fact that you are presently reading this means that you have had
+ #  knowledge of the CeCILL-B license and that you accept its terms.
+ # ------------------------------------------------------------------------ */
 
 #include "listWx.h"
 
@@ -31,86 +30,92 @@ namespace creaButtonContainer
        namespace view
        {
                // ----------------------------------------------------------------------------------
-               ListWx::ListWx( wxWindow* parent, long id, ButtonPair* pair )
+
+               ListWx::ListWx(wxWindow* parent, wxWindowID id, ItemsVector iVector,
+                               TFunctor* functor)
+                               : wxPanel(parent, id)
                {
-                       this->m_ButtonPair                      = pair;
-                       StringType wXbuttonName         = this->m_ButtonPair->first->first;
-                       BitmapType wXicon               = this->m_ButtonPair->first->second;
-                       StringType wXdescription        = this->m_ButtonPair->second->first;
-                       wxString buttonName( wXbuttonName.c_str( ), wxConvUTF8 );
-                       wxString description( wXdescription.c_str( ), wxConvUTF8 );
-                       //creating the button.
-                       //this->Create( parent, id,
-                               //      wXicon,
-                           //wxDefaultPosition, wxDefaultSize,wxBU_AUTODRAW, wxDefaultValidator,
-                           //buttonName );
-                       this->Create( parent, id,
-                                                   wxDefaultPosition, wxDefaultSize,wxLC_LIST, wxDefaultValidator,
-                                                   buttonName );
-                       this->SetToolTip( description );
 
+                       this->m_Functor = functor;
 
-                               long index = this->InsertItem(0, _("John Smith"));
-                           this->SetItem(index, 1, _("jsmith"));
+                       wxBoxSizer* sizer = new wxBoxSizer(wxHORIZONTAL);
 
-                           index = this->InsertItem(1, _("Monica"));
-                           this->SetItem(index, 1, _("monica"));
+                       this->SetSizer(sizer);
 
-                           index = this->InsertItem(2, _("Momo"));
-                           this->SetItem(index, 2, _("momo"));
+                       this->m_ListBox = new wxListBox(this, -1);
+                       this->m_FunctorEnabled = true;
 
+                       this->Connect(wxEVT_COMMAND_LISTBOX_SELECTED,
+                                       wxCommandEventHandler(ListWx::ListEvent));
 
+                       if (!iVector.empty())
+                       {
+                               for (ItemsVector::iterator it = iVector.begin(); it != iVector.end();
+                                               ++it)
+                               {
+                                       std::string key = it->first;
+                                       this->m_ListBox->Append(wxString(key.c_str(), wxConvUTF8));
+                               }
+                       }
 
-               }
+                       sizer->Add(this->m_ListBox,1,wxGROW);
 
+               }
                // ----------------------------------------------------------------------------------
-               ListWx::~ListWx( )
+
+               ListWx::ListWx(wxWindow* parent, wxWindowID id, TFunctor* functor)
                {
-               }
 
+               }
                // ----------------------------------------------------------------------------------
-               StringType
-               ListWx::GetButtonName( )
+
+               ListWx::~ListWx()
                {
-                       return ( this->m_ButtonPair->first->first );
+
                }
 
                // ----------------------------------------------------------------------------------
-               BitmapType
-               ListWx::GetIcon( )
+
+               void ListWx::ListEvent(wxCommandEvent& event)
                {
-                       return ( this->m_ButtonPair->first->second );
+                       if (!this->IsFunctorEnabled())
+                               return;
+                       else
+                       {
+                               try
+                               {
+                                       std::cout << "MLER | ListWx::ListEvent( wxListEvent& event )"
+                                                       << std::endl;
+
+                                       int iSelection;
+                                       iSelection = this->m_ListBox->GetSelection();
+
+                                       wxString itemNom = this->m_ListBox->GetString(iSelection);
+                                       std::string itemNomC = std::string(itemNom.mb_str());
+
+                                       this->m_Functor->Call(itemNomC);
+
+                               } //yrt
+                               catch (const std::exception& e)
+                               {
+                                       std::cerr
+                                                       << "ButtonContainerController::ButtonEvent( wxCommandEvent& event ) exception: "
+                                                       << e.what() << std::endl;
+                               } //hctac
+                       }
                }
-
                // ----------------------------------------------------------------------------------
-               /*StringType
-               Button::GetIconPath( )
-               {
-                       return ( this->m_ButtonPair->first->second );
-               }*/
 
-               // ----------------------------------------------------------------------------------
-               StringType
-               ListWx::GetDescription( )
+               void ListWx::SetFunctorEnabled(const bool& enabled)
                {
-                       return ( this->m_ButtonPair->second->first );
+                       this->m_FunctorEnabled = enabled;
                }
-
                // ----------------------------------------------------------------------------------
-               void
-               ListWx::Execute( )
+               bool ListWx::IsFunctorEnabled() const
                {
-                       try
-                       {
-                               TFunctor* vTable[ ] =
-                               { this->m_ButtonPair->second->second };
-                               vTable[ 0 ]->Call( this->m_ButtonPair->first->first );
-                       }//yrt
-                       catch ( const std::exception& e )
-                       {
-                               std::cerr << "Button::Execute( ) exception: " << e.what( ) << std::endl;
-                       }//hctac
+                       return this->m_FunctorEnabled;
                }
-       // ----------------------------------------------------------------------------------
-       }//ecapseman
-}//ecapseman
+
+       } //ecapseman
+} //ecapseman
+