projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix warnings about calling an inline function before it is defined inline
[wxWidgets.git]
/
include
/
wx
/
gtk
/
menuitem.h
diff --git
a/include/wx/gtk/menuitem.h
b/include/wx/gtk/menuitem.h
index ce936fa4ac3f7fac2550f7519d5c97592ad8b630..7ac723e239f6ab9899bb6898ff9fc8479689389a 100644
(file)
--- a/
include/wx/gtk/menuitem.h
+++ b/
include/wx/gtk/menuitem.h
@@
-4,23
+4,19
@@
// Author: Robert Roebling
// RCS-ID: $Id$
// Copyright: (c) 1998 Robert Roebling
// Author: Robert Roebling
// RCS-ID: $Id$
// Copyright: (c) 1998 Robert Roebling
-// Licence: wxWindows licen
s
e
+// Licence: wxWindows licen
c
e
///////////////////////////////////////////////////////////////////////////////
#ifndef __GTKMENUITEMH__
#define __GTKMENUITEMH__
///////////////////////////////////////////////////////////////////////////////
#ifndef __GTKMENUITEMH__
#define __GTKMENUITEMH__
-#ifdef __GNUG__
-#pragma interface
-#endif
-
#include "wx/bitmap.h"
//-----------------------------------------------------------------------------
// wxMenuItem
//-----------------------------------------------------------------------------
#include "wx/bitmap.h"
//-----------------------------------------------------------------------------
// wxMenuItem
//-----------------------------------------------------------------------------
-class wxMenuItem : public wxMenuItemBase
+class
WXDLLIMPEXP_CORE
wxMenuItem : public wxMenuItemBase
{
public:
wxMenuItem(wxMenu *parentMenu = (wxMenu *)NULL,
{
public:
wxMenuItem(wxMenu *parentMenu = (wxMenu *)NULL,
@@
-29,7
+25,7
@@
public:
const wxString& help = wxEmptyString,
wxItemKind kind = wxITEM_NORMAL,
wxMenu *subMenu = (wxMenu *)NULL);
const wxString& help = wxEmptyString,
wxItemKind kind = wxITEM_NORMAL,
wxMenu *subMenu = (wxMenu *)NULL);
- ~wxMenuItem();
+
virtual
~wxMenuItem();
// implement base class virtuals
virtual void SetText( const wxString& str );
// implement base class virtuals
virtual void SetText( const wxString& str );
@@
-52,6
+48,10
@@
public:
wxString GetHotKey() const { return m_hotKey; }
wxString GetHotKey() const { return m_hotKey; }
+ // 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,
// compatibility only, don't use in new code
wxMenuItem(wxMenu *parentMenu,
int id,
@@
-62,7
+62,7
@@
public:
private:
// common part of all ctors
private:
// common part of all ctors
- void Init();
+ 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()
// DoSetText() transforms the accel mnemonics in our label from MSW/wxWin
// style to GTK+ and is called from ctor and SetText()