X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FcreaPanelButtonContainer%2FcreaPanelButtonContainer.h;fp=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FcreaPanelButtonContainer%2FcreaPanelButtonContainer.h;h=71ec045bf70e8a1b53a2ab4a674124f146c98f1d;hb=8eebd53dcbe07edf0569621003178ee37d69a39b;hp=93ea3da0bf8b8f7c3398da6b7af586ab0cf9a65c;hpb=497867af0d89e85bac1566016ee3fe1014207489;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaPanelButtonContainer/creaPanelButtonContainer.h b/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaPanelButtonContainer/creaPanelButtonContainer.h index 93ea3da..71ec045 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaPanelButtonContainer/creaPanelButtonContainer.h +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaPanelButtonContainer/creaPanelButtonContainer.h @@ -1,27 +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. + # ------------------------------------------------------------------------ */ /*! * @file PanelButtonContainer @@ -37,12 +37,17 @@ #include #include #include +#include +#include +#include "listConfigDialog.h" #include "containerSettings.h" #include "buttonContainerPanel.h" #include "buttonContainerSettings.h" #include "functor.h" #include "listWx.h" +#include "Settings.xpm" +#include "comboBox.h" /*! @namespace * @brief Contains the creaPanelButtonContainer library included in creaMaracasVisu. @@ -53,7 +58,7 @@ namespace creaPanelButtonContainer * @brief This class contains the PanelButtonContainer. It derives from wxPanel. * @see wxPanel */ - class PanelButtonContainer : public wxPanel + class PanelButtonContainer: public wxPanel { public: //typedef definition. @@ -61,16 +66,29 @@ namespace creaPanelButtonContainer /*! typedef creaPanelButtonContainer::ButtonContainerSettings ButtonContainerSettings; * @brief Defines the ButtonContainerSettings type. */ - typedef creaPanelButtonContainer::ButtonContainerSettings - ButtonContainerSettings; + typedef creaPanelButtonContainer::ButtonContainerSettings ButtonContainerSettings; /*! typedef creaButtonContainer::view::ButtonContainerPanel ButtonContainerPanel; * @brief Defines the ButtonContainerPanel type. */ - typedef creaButtonContainer::view::ButtonContainerPanel - ButtonContainerPanel; + typedef creaButtonContainer::view::ButtonContainerPanel ButtonContainerPanel; + + //MLER + /*! typedef creaButtonContainer::view::ListWx ListWx; + * @brief Defines a ListWx for (Configurable) List Container. + * This class inherits from wxPanel and contains a wxListBox. + */ typedef creaButtonContainer::view::ListWx ListWx; + /*! typedef creaPanelButtonContainer::ListConfigDialog ListConfigDialog; + * @brief Defines a ListConfigPanel to configure. + * This class inherits from wxDialog and contains the wxListBox and wxButton. + */ + typedef creaButtonContainer::view::ListConfigDialog ListConfigDialog; + + typedef creaButtonContainer::view::ComboBox ComboBox; + // ---------------------------------------------------------------------------------- - //end of typedef definition. + //End MLER + //end of typedef definition. public: // ---------------------------------------------------------------------------------- /*! @fn PanelButtonContainer( wxWindow* parent, ButtonContainerSettings* bcSettings ); @@ -78,53 +96,82 @@ namespace creaPanelButtonContainer * @param parent The wxWindow pointer to parent * @param bcSettings //The buttonContainerSettings */ - PanelButtonContainer( wxWindow* parent, - ButtonContainerSettings* bcSettings, int type ); + PanelButtonContainer(wxWindow* parent, + ButtonContainerSettings* bcSettings, int type); // ---------------------------------------------------------------------------------- /*! @fn virtual PanelButtonContainer( ); * @brief This is the destructor. */ virtual - ~PanelButtonContainer( ); + ~PanelButtonContainer(); // ---------------------------------------------------------------------------------- /*! @fn void UpdatePanel( const std::string &buttonName ); - * @brief This method Updates the m_ButtonPanel to a panel + * @brief This method Updates the m_EventPanel to a panel * of the clicked button in creaButtonContainer. * @param buttonName */ void - UpdatePanel( const std::string &buttonName ); + UpdatePanel(const std::string &buttonName); // ---------------------------------------------------------------------------------- /*! @fn void GenericButtonEvent( const std::string &buttonName ); - * @brief This method is the function that calls the panels contained in the buttons + * @brief This method is the function that calls the panels contained in the buttons. * (in creaButtonContainer is the function contained in the functors to be called back. * @param buttonName The name of the button */ void - GenericButtonEvent( const std::string &buttonName ); - + GenericButtonEvent(const std::string &buttonName); // ---------------------------------------------------------------------------------- + //MLER + /*! @fn void GenericListEvent( const std::string &buttonName ); + * @brief This method is the function that calls the panels contained in the items list. + * (in creaButtonContainer is the function contained in the functors to be called back. + * @param buttonName The name of the button (item list) + */ void - UpdateListPanel( const std::string &buttonName ); - + GenericListEvent(const std::string &buttonName); + // ---------------------------------------------------------------------------------- + /*! @fn void UpdateListPanel( const std::string &buttonName ); + * @brief This method Updates the m_EventPanel to a panel + * of the clicked an item in creaButtonContainer. + * @param buttonName The name of the button (item list) + */ void - GenericListEvent( const std::string &buttonName ); - //MLER - + UpdateListPanel(const std::string &buttonName); + // ---------------------------------------------------------------------------------- + /*! @fn void OnConfigButton( wxCommandEvent& event ); + * @brief This method calls the wxDialog when + * the config button is clicked. + * @param event + */ + void + OnConfigButton(wxCommandEvent& event); + //End MLER // ---------------------------------------------------------------------------------- private: //Settings ButtonContainerSettings* m_ButtonContainerSettings; //!