fixed problem with calling SetFont() when (multiline) text control didn't have any value yet

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8598 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-10-20 14:11:42 +00:00
parent 69754f3253
commit 0104114590
4 changed files with 84 additions and 32 deletions

View File

@@ -28,7 +28,7 @@ class wxTextCtrl;
class wxTextCtrl: public wxTextCtrlBase
{
public:
wxTextCtrl();
wxTextCtrl() { Init(); }
wxTextCtrl(wxWindow *parent,
wxWindowID id,
const wxString &value = wxEmptyString,
@@ -139,17 +139,25 @@ public:
void ApplyWidgetStyle();
void CalculateScrollbar();
void OnInternalIdle();
void UpdateFontIfNeeded();
void SetModified() { m_modified = TRUE; }
protected:
virtual wxSize DoGetBestSize() const;
// common part of all ctors
void Init();
private:
// change the font for everything in this control
void ChangeFontGlobally();
bool m_modified;
GtkWidget *m_text;
GtkWidget *m_vScrollbar;
bool m_vScrollbarVisible;
bool m_updateFont;
DECLARE_EVENT_TABLE()
DECLARE_DYNAMIC_CLASS(wxTextCtrl);