wxTextCtrl works as itshould in disabled and/or not editable states

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/wxUNIVERSAL@8579 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-10-18 17:46:08 +00:00
parent 85df8658e0
commit 3b56ef075a
7 changed files with 240 additions and 67 deletions

View File

@@ -239,6 +239,7 @@ MyUnivFrame::MyUnivFrame(const wxString& title)
{
SetBackgroundColour(wxGetApp().GetBgColour());
new wxStaticText(this, _T("Test static text"), wxPoint(10, 10));
#ifndef TEST_TEXT_ONLY
new wxStaticText(this, _T("Test static text"), wxPoint(10, 10));
new wxStaticText(this,
@@ -383,7 +384,7 @@ MyUnivFrame::MyUnivFrame(const wxString& title)
new wxTextCtrl(this, -1, _T("Hello, Universe!"),
wxPoint(550, 150), wxDefaultSize);
#else // TEST_TEXT_ONLY
#if 0
#if 1
wxTextCtrl *text = new wxTextCtrl(this, -1, _T("Hello, Universe!"),
wxPoint(10, 40));
text->SetFont(wxFont(24, wxFONTFAMILY_DEFAULT,
@@ -392,12 +393,12 @@ MyUnivFrame::MyUnivFrame(const wxString& title)
sizeText.x = 200;
text->SetSize(sizeText);
#else
wxTextCtrl *
wxTextCtrl *text = new wxTextCtrl(this, -1, _T("Hello,\nMultiverse!"),
wxPoint(10, 10), wxDefaultSize,
wxTE_MULTILINE);
#endif
text = new wxTextCtrl(this, -1, _T("Hello,\nMultiverse!"),
wxPoint(10, 10), wxDefaultSize,
wxTE_MULTILINE);
text->SetFocus();
text->SetEditable(FALSE);
#endif // !TEST_TEXT_ONLY/TEST_TEXT_ONLY
}