added possibility to strip only mnemonics, not accels, in wxStripMenuCodes(); added wxControl::GetLabelText()
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40329 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -33,6 +33,7 @@
|
||||
#include "wx/radiobut.h"
|
||||
#include "wx/statbmp.h"
|
||||
#include "wx/bitmap.h"
|
||||
#include "wx/utils.h" // for wxStripMenuCodes()
|
||||
#endif
|
||||
|
||||
const wxChar wxControlNameStr[] = wxT("control");
|
||||
@@ -85,6 +86,13 @@ bool wxControlBase::CreateControl(wxWindowBase *parent,
|
||||
return true;
|
||||
}
|
||||
|
||||
/* static */
|
||||
wxString wxControlBase::GetLabelText(const wxString& label)
|
||||
{
|
||||
// we don't want strip the TABs here, just the mnemonics
|
||||
return wxStripMenuCodes(label, wxStrip_Mnemonics);
|
||||
}
|
||||
|
||||
void wxControlBase::Command(wxCommandEvent& event)
|
||||
{
|
||||
(void)GetEventHandler()->ProcessEvent(event);
|
||||
|
||||
Reference in New Issue
Block a user