]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/ctrlcmn.cpp
wxDFB: implemented Raise() and Lower() for TLWs
[wxWidgets.git] / src / common / ctrlcmn.cpp
index 2bb9ab4520052522d7c1afc91d185da90d507412..83f789b8243ff5180ca36e507d0827f207262db7 100644 (file)
@@ -36,7 +36,7 @@
     #include "wx/utils.h"       // for wxStripMenuCodes()
 #endif
 
-const wxChar wxControlNameStr[] = wxT("control");
+const char wxControlNameStr[] = "control";
 
 // ============================================================================
 // implementation
@@ -120,13 +120,6 @@ void wxControlBase::InitCommandEvent(wxCommandEvent& event) const
     }
 }
 
-
-void wxControlBase::SetLabel( const wxString &label )
-{
-    InvalidateBestSize();
-    wxWindow::SetLabel(label);
-}
-
 bool wxControlBase::SetFont(const wxFont& font)
 {
     InvalidateBestSize();
@@ -159,6 +152,18 @@ void wxControlBase::DoUpdateWindowUI(wxUpdateUIEvent& event)
 #endif // wxUSE_RADIOBTN
 }
 
+/* static */
+wxString wxControlBase::RemoveMnemonics(const wxString& str)
+{
+    return wxStripMenuCodes(str, wxStrip_Mnemonics);
+}
+
+wxBorder wxControlBase::GetDefaultBorder() const
+{
+    return wxBORDER_THEME;
+}
+
+
 // ----------------------------------------------------------------------------
 // wxStaticBitmap
 // ----------------------------------------------------------------------------