X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcreaDevManagerLib%2FwxCDMLibHelpDialog.h;h=9d7049a24be60cb5e10ecce60966a7060a7d1317;hb=76962b2ed3513cee0f6afd83b9d93e2b43bdefc5;hp=59a000f53dfb9063ad7fd71c0fe1a17fcfb1eabd;hpb=4e0312091408bc9bd77f3f70ade44d207365cdbe;p=crea.git diff --git a/lib/creaDevManagerLib/wxCDMLibHelpDialog.h b/lib/creaDevManagerLib/wxCDMLibHelpDialog.h index 59a000f..9d7049a 100644 --- a/lib/creaDevManagerLib/wxCDMLibHelpDialog.h +++ b/lib/creaDevManagerLib/wxCDMLibHelpDialog.h @@ -23,7 +23,7 @@ # 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. # ------------------------------------------------------------------------ -*/ + */ /* @@ -41,10 +41,23 @@ #include "modelCDMLib.h" +/** + * Lib Panel Help Dialog + */ class wxCDMLibHelpDialog : public wxDialog { DECLARE_EVENT_TABLE() public: + /** + * Lib Panel Help Dialog Constructor. + * @param parent Parent window. + * @param lib Library class reference. + * @param id Dialog ID. By default wxID_ANY. + * @param caption Dialog label. By default "Managing Libraries". + * @param position Dialog position. By default wxDefaultPosition. + * @param size Dialog size. By default 350, 600. + * @param style Dialog style. By default wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER. + */ wxCDMLibHelpDialog( wxWindow* parent, modelCDMLib* lib, @@ -54,7 +67,20 @@ public: const wxSize& size = wxSize(350,600), long style = wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER ); + /** + * Destructor. + */ ~wxCDMLibHelpDialog(); + /** + * Lib Panel Help Dialog Creator. + * @param parent Parent window. + * @param id Dialog ID. By default wxID_ANY. + * @param caption Dialog label. By default "Managing Libraries". + * @param position Dialog position. By default wxDefaultPosition. + * @param size Dialog size. By default 350, 600. + * @param style Dialog style. By default wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER. + * @return if the creation was successful. + */ bool Create( wxWindow* parent, wxWindowID id = wxID_ANY, @@ -65,21 +91,47 @@ public: ); protected: + /** + * Creates the help controls (text and buttons). + */ void CreateControls(); -//attributes + //attributes private: + /** + * Lib class reference. + */ modelCDMLib* lib; -//handlers + //handlers protected: + /** + * Handler to close help dialog. + * @param event Unused. + */ void OnFinish(wxCommandEvent& event); + /** + * Handler when a cmakelists button is pressed. + * @param event cmakelists event. + */ void OnEditCMake(wxCommandEvent& event); + /** + * Handler when a cmakelists button is hovered. + * @param event cmakelists event. + */ void OnEditCMakeMouseEnter(wxMouseEvent& event); + /** + * Handler when a cmakelists button hover finishes. + * @param event cmakelists event. + */ void OnEditCMakeMouseExit(wxMouseEvent& event); + /** + * Handler when the disable help checkbox is changed. + * @param event check box event. + */ void OnDisableHelp(wxCommandEvent& event); };