// Author: Robert Roebling
// RCS-ID: $Id$
// Copyright: (c) 1998 Robert Roebling
-// Licence: wxWindows license
+// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
#ifndef __GTKMENUITEMH__
#define __GTKMENUITEMH__
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "wx/defs.h"
-#include "wx/string.h"
-
-// ----------------------------------------------------------------------------
-// constants
-// ----------------------------------------------------------------------------
-
-#define ID_SEPARATOR (-1)
-
-//-----------------------------------------------------------------------------
-// classes
-//-----------------------------------------------------------------------------
-
-class wxMenuItem;
-class wxMenu;
+#include "wx/bitmap.h"
//-----------------------------------------------------------------------------
// wxMenuItem
//-----------------------------------------------------------------------------
-class wxMenuItem : public wxObject
+class WXDLLIMPEXP_CORE wxMenuItem : public wxMenuItemBase
{
-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; }
+ wxMenuItem(wxMenu *parentMenu = (wxMenu *)NULL,
+ int id = wxID_SEPARATOR,
+ const wxString& text = wxEmptyString,
+ const wxString& help = wxEmptyString,
+ wxItemKind kind = wxITEM_NORMAL,
+ wxMenu *subMenu = (wxMenu *)NULL);
+ virtual ~wxMenuItem();
+
+ // implement base class virtuals
+ virtual void SetItemLabel( const wxString& str );
+ virtual wxString GetItemLabel() const;
+ virtual void Enable( bool enable = TRUE );
+ virtual void Check( bool check = TRUE );
+ virtual bool IsChecked() const;
+ virtual void SetBitmap(const wxBitmap& bitmap) { m_bitmap = bitmap; }
+ virtual const wxBitmap& GetBitmap() const { return m_bitmap; }
+
+#if wxUSE_ACCEL
+ virtual wxAcceleratorEntry *GetAccel() const;
+#endif // wxUSE_ACCEL
// implementation
void SetMenuItem(GtkWidget *menuItem) { m_menuItem = menuItem; }
GtkWidget *GetMenuItem() const { return m_menuItem; }
-
+ GtkWidget *GetLabelWidget() const { return m_labelWidget; }
+ void SetLabelWidget(GtkWidget *labelWidget) { m_labelWidget = labelWidget; }
+ wxString GetFactoryPath() const;
+
wxString GetHotKey() const { return m_hotKey; }
- void SetCheckedFlag(bool checked) { m_isChecked = checked; }
- bool GetCheckedFlag() const { return m_isChecked; }
+ // splits given string in the label, doing & => _ translation, which is returned,
+ // and in the hotkey which is used to set given pointer
+ static wxString GTKProcessMenuItemLabel(const wxString& str, wxString *hotKey);
+
+ // compatibility only, don't use in new code
+ wxMenuItem(wxMenu *parentMenu,
+ int id,
+ const wxString& text,
+ const wxString& help,
+ bool isCheckable,
+ wxMenu *subMenu = (wxMenu *)NULL);
private:
- int m_id;
- wxString m_text;
- wxString m_hotKey;
- bool m_isCheckMenu;
- bool m_isChecked;
- bool m_isEnabled;
- wxMenu *m_subMenu;
- wxString m_helpStr;
-
- GtkWidget *m_menuItem; // GtkMenuItem
-};
+ // common part of all ctors
+ void Init(const wxString& text);
+ // DoSetText() transforms the accel mnemonics in our label from MSW/wxWin
+ // style to GTK+ and is called from ctor and SetText()
+ void DoSetText(const wxString& text);
+
+ wxString m_hotKey;
+ wxBitmap m_bitmap; // Bitmap for menuitem, if any
+
+ GtkWidget *m_menuItem; // GtkMenuItem
+ GtkWidget* m_labelWidget; // Label widget
+
+ DECLARE_DYNAMIC_CLASS(wxMenuItem)
+};
#endif
//__GTKMENUITEMH__