]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/menuitem.h
Implemented wxArrayString::Shrink() and stuff.
[wxWidgets.git] / include / wx / gtk / menuitem.h
index 446498063b54d2f6b26a2a3a07a07e062a13712d..e84a48500c2c55ee829ae134bc084965420d159e 100644 (file)
 //-----------------------------------------------------------------------------
 
 class wxMenuItem;
-
 class wxMenu;
 
 //-----------------------------------------------------------------------------
 // wxMenuItem
 //-----------------------------------------------------------------------------
 
-class wxMenuItem: public wxObject
+class wxMenuItem : public wxObject
 {
 DECLARE_DYNAMIC_CLASS(wxMenuItem)
 
 public:
-  wxMenuItem();
-
-  // accessors
-    // id
-  void SetId(int id) { m_id = id; }
-  int  GetId() const { return m_id; }
-  bool IsSeparator() const { return m_id == ID_SEPARATOR; }
-
-    // the item's text = name
-  void SetName(const wxString& str);
-  void SetText(const wxString& str) { SetName(str); } // compatibility
-  const wxString& GetName() const { return m_text; }
-  const wxString& GetText() const { return GetName(); }
-
-    // what kind of menu item we are
-  void SetCheckable(bool checkable) { m_isCheckMenu = checkable; }
-  bool IsCheckable() const { return m_isCheckMenu; }
-  void SetSubMenu(wxMenu *menu) { m_subMenu = menu; }
-  wxMenu *GetSubMenu() const { return m_subMenu; }
-  bool IsSubMenu() const { return m_subMenu != NULL; }
-
-    // state
-  void Enable( bool enable = TRUE );
-  bool IsEnabled() const { return m_isEnabled; }
-  void Check( bool check = TRUE );
-  bool IsChecked() const;
-
-    // help string (displayed in the status bar by default)
-  void SetHelp(const wxString& str) { m_helpStr = str; }
-  const wxString& GetHelp() const { return m_helpStr; }
-
-  // implementation
-  
-  void SetMenuItem(GtkWidget *menuItem) { m_menuItem = menuItem; }
-  GtkWidget *GetMenuItem() const { return m_menuItem; }
-
-  int           m_id;
-  wxString      m_text;
-  bool          m_isCheckMenu;
-  bool          m_isChecked;
-  bool          m_isEnabled;
-  wxMenu       *m_subMenu;
-  wxString      m_helpStr;
-
-  GtkWidget    *m_menuItem;  // GtkMenuItem
+    wxMenuItem();
+
+    // accessors
+        // id
+    void SetId(int id) { m_id = id; }
+    int  GetId() const { return m_id; }
+    bool IsSeparator() const { return m_id == ID_SEPARATOR; }
+
+        // the item's text = name
+    void SetName(const wxString& str);
+    void SetText(const wxString& str) { SetName(str); } // compatibility
+    const wxString& GetName() const { return m_text; }
+    const wxString& GetText() const { return GetName(); }
+
+        // what kind of menu item we are
+    void SetCheckable(bool checkable) { m_isCheckMenu = checkable; }
+    bool IsCheckable() const { return m_isCheckMenu; }
+    void SetSubMenu(wxMenu *menu) { m_subMenu = menu; }
+    wxMenu *GetSubMenu() const { return m_subMenu; }
+    bool IsSubMenu() const { return m_subMenu != NULL; }
+
+        // state
+    void Enable( bool enable = TRUE );
+    bool IsEnabled() const { return m_isEnabled; }
+    void Check( bool check = TRUE );
+    bool IsChecked() const;
+
+        // help string (displayed in the status bar by default)
+    void SetHelp(const wxString& str) { m_helpStr = str; }
+    const wxString& GetHelp() const { return m_helpStr; }
+
+    // implementation
+    void SetMenuItem(GtkWidget *menuItem) { m_menuItem = menuItem; }
+    GtkWidget *GetMenuItem() const { return m_menuItem; }
+
+    void SetCheckedFlag(bool checked) { m_isChecked = checked; }
+    bool GetCheckedFlag() const { return m_isChecked; }
+
+private:
+    int           m_id;
+    wxString      m_text;
+    bool          m_isCheckMenu;
+    bool          m_isChecked;
+    bool          m_isEnabled;
+    wxMenu       *m_subMenu;
+    wxString      m_helpStr;
+
+    GtkWidget    *m_menuItem;  // GtkMenuItem
 };