3f66f6a5b3
This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
68 lines
2.4 KiB
C++
68 lines
2.4 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/motif/menuitem.h
|
|
// Purpose: wxMenuItem class
|
|
// Author: Vadim Zeitlin
|
|
// Modified by:
|
|
// Created: 11.11.97
|
|
// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_MOTIF_MENUITEM_H
|
|
#define _WX_MOTIF_MENUITEM_H
|
|
|
|
#include "wx/bitmap.h"
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxMenuBar;
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxMenuItem: an item in the menu, optionally implements owner-drawn behaviour
|
|
// ----------------------------------------------------------------------------
|
|
|
|
class WXDLLIMPEXP_CORE wxMenuItem : public wxMenuItemBase
|
|
{
|
|
public:
|
|
// ctor & dtor
|
|
wxMenuItem(wxMenu *parentMenu = NULL,
|
|
int id = wxID_SEPARATOR,
|
|
const wxString& text = wxEmptyString,
|
|
const wxString& help = wxEmptyString,
|
|
wxItemKind kind = wxITEM_NORMAL,
|
|
wxMenu *subMenu = NULL);
|
|
virtual ~wxMenuItem();
|
|
|
|
// accessors (some more are inherited from wxOwnerDrawn or are below)
|
|
virtual void SetItemLabel(const wxString& label);
|
|
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,
|
|
size_t index);
|
|
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)
|
|
};
|
|
|
|
#endif // _WX_MOTIF_MENUITEM_H
|