git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45487
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
private:
// common part of all ctors
private:
// 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()
// DoSetText() transforms the accel mnemonics in our label from MSW/wxWin
// style to GTK+ and is called from ctor and SetText()
wxMenu *subMenu)
: wxMenuItemBase(parentMenu, id, text, help, kind, subMenu)
{
wxMenu *subMenu)
: wxMenuItemBase(parentMenu, id, text, help, kind, subMenu)
{
}
wxMenuItem::wxMenuItem(wxMenu *parentMenu,
}
wxMenuItem::wxMenuItem(wxMenu *parentMenu,
: wxMenuItemBase(parentMenu, id, text, help,
isCheckable ? wxITEM_CHECK : wxITEM_NORMAL, subMenu)
{
: wxMenuItemBase(parentMenu, id, text, help,
isCheckable ? wxITEM_CHECK : wxITEM_NORMAL, subMenu)
{
-void wxMenuItem::Init(const wxString& text)
{
m_labelWidget = (GtkWidget *) NULL;
m_menuItem = (GtkWidget *) NULL;
{
m_labelWidget = (GtkWidget *) NULL;
m_menuItem = (GtkWidget *) NULL;
}
wxMenuItem::~wxMenuItem()
}
wxMenuItem::~wxMenuItem()
void wxMenuItem::DoSetText( const wxString& str )
{
// '\t' is the deliminator indicating a hot key
void wxMenuItem::DoSetText( const wxString& str )
{
// '\t' is the deliminator indicating a hot key
+ wxString text;
+ text.reserve(str.length());
+
const wxChar *pc = str;
while ( (*pc != wxT('\0')) && (*pc != wxT('\t')) )
{
const wxChar *pc = str;
while ( (*pc != wxT('\0')) && (*pc != wxT('\t')) )
{
{
// "&" is doubled to indicate "&" instead of accelerator
++pc;
{
// "&" is doubled to indicate "&" instead of accelerator
++pc;
}
else if (*pc == wxT('&'))
{
}
else if (*pc == wxT('&'))
{
}
else if ( *pc == wxT('_') ) // escape underscores
{
}
else if ( *pc == wxT('_') ) // escape underscores
{
}
++pc;
}
m_hotKey = wxEmptyString;
}
++pc;
}
m_hotKey = wxEmptyString;
+ if ( *pc == wxT('\t') )