]> Creatis software - crea.git/blobdiff - lib/creaDevManagerLib/wxCDMMainDescriptionPanel.h
Feature #1711 CreaDevManager application implementation
[crea.git] / lib / creaDevManagerLib / wxCDMMainDescriptionPanel.h
index 0e384fd0b627f6e62f483dff22763902ee91f1fe..08490f77a45c4141a4ead2cec04ad1159445ad1d 100644 (file)
 #define WXCDMMAINDESCRIPTIONPANEL_H_
 
 #include <creaWx.h>
-#include <wx/panel.h>
-
-class wxCDMMainDescriptionPanel : public wxPanel
+/**
+ * Main View description panel. Shows the welcome message and allows to open or create Crea projects.
+ */
+class wxCDMMainDescriptionPanel : public wxScrolledWindow
 {
   DECLARE_EVENT_TABLE()
 
 public:
+  /**
+   * Main description panel Constructor.
+   * @param parent Parent window reference.
+   * @param id Panel ID. By default -1.
+   * @param caption Panel label. By default "Description Frame".
+   * @param pos Panel position. By default wxDefaultPosition.
+   * @param size Panel size. By default wxDefaultSize.
+   * @param style Panel style. By default wxDEFAULT_FRAME_STYLE.
+   */
     wxCDMMainDescriptionPanel(
         wxWindow* parent,
         wxWindowID id = -1,
@@ -53,8 +63,20 @@ public:
         long style = wxDEFAULT_FRAME_STYLE
     );
 
+    /**
+     * Destructor.
+     */
     ~wxCDMMainDescriptionPanel();
 
+    /**
+     * Main description panel Constructor.
+     * @param parent Parent window reference.
+     * @param id Panel ID. By default -1.
+     * @param caption Panel label. By default "Description Frame".
+     * @param pos Panel position. By default wxDefaultPosition.
+     * @param size Panel size. By default wxDefaultSize.
+     * @param style Panel style. By default wxDEFAULT_FRAME_STYLE.
+     */
     bool Create(
         wxWindow* parent,
         wxWindowID id = -1,
@@ -64,11 +86,20 @@ public:
         long style = wxDEFAULT_FRAME_STYLE
     );
 
+    /**
+     * Creates all the controls in the panel (property and action controls).
+     */
     void CreateControls();
 
 //handlers
 protected:
+    /**
+     * Handles when the create new project button is pressed.
+     */
     void OnBtnNewProject(wxCommandEvent& event);
+    /**
+     * Handles when the open project button is pressed.
+     */
     void OnBtnOpenProject(wxCommandEvent& event);
 };