]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/menuitem.h
corrected EVT_TEXT_URL() definition, its handler takes wxTextUrlEvent and not wxComma...
[wxWidgets.git] / include / wx / motif / menuitem.h
index 4822d8013c36d1fc1afd63cd8014ed1aa3d7772c..927eea72c659f585b5897c22d4e0d34430ff146c 100644 (file)
@@ -2,20 +2,22 @@
 // Name:        menuitem.h
 // Purpose:     wxMenuItem class
 // Author:      Vadim Zeitlin
-// Modified by: 
+// Modified by:
 // Created:     11.11.97
 // RCS-ID:      $Id$
 // Copyright:   (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_MOTIF_MENUITEM_H
 #define _WX_MOTIF_MENUITEM_H
 
-#ifdef __GNUG__
-    #pragma interface "menuitem.h"
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
+#pragma interface "menuitem.h"
 #endif
 
+#include "wx/bitmap.h"
+
 class WXDLLEXPORT wxMenuBar;
 
 // ----------------------------------------------------------------------------
@@ -30,35 +32,39 @@ public:
                int id = wxID_SEPARATOR,
                const wxString& text = wxEmptyString,
                const wxString& help = wxEmptyString,
-               bool isCheckable = FALSE,
+               wxItemKind kind = wxITEM_NORMAL,
                wxMenu *subMenu = (wxMenu *)NULL);
     ~wxMenuItem();
-
+    
     // accessors (some more are inherited from wxOwnerDrawn or are below)
     virtual void SetText(const wxString& label);
-    virtual wxString GetLabel() const;
-    virtual void Enable(bool enable = TRUE);
-    virtual void Check(bool check = TRUE);
-
-    void DeleteSubMenu();
-
+    virtual void Enable(bool enable = true);
+    virtual void Check(bool check = true);
+    // included SetBitmap and GetBitmap as copied from the GTK include file
+    // I'm not sure if this works but it silences the linker in the
+    // menu sample.
+    //     JJ
+    virtual void SetBitmap(const wxBitmap& bitmap) { m_bitmap = bitmap; }
+    virtual const wxBitmap& GetBitmap() const { return m_bitmap; }
+    
     // implementation from now on
     void CreateItem (WXWidget menu, wxMenuBar * menuBar, wxMenu * topMenu);
     void DestroyItem(bool full);
-
+    
     WXWidget GetButtonWidget() const { return m_buttonWidget; }
-
+    
     wxMenuBar* GetMenuBar() const { return m_menuBar; }
     void SetMenuBar(wxMenuBar* menuBar) { m_menuBar = menuBar; }
-
+    
     wxMenu* GetTopMenu() const { return m_topMenu; }
     void SetTopMenu(wxMenu* menu) { m_topMenu = menu; }
-
+    
 private:
     WXWidget    m_buttonWidget;
     wxMenuBar*  m_menuBar;
     wxMenu*     m_topMenu;        // Top-level menu e.g. popup-menu
-
+    wxBitmap  m_bitmap; // Bitmap for menuitem, if any
+    
     DECLARE_DYNAMIC_CLASS(wxMenuItem)
 };