]> git.saurik.com Git - wxWidgets.git/commitdiff
Added code to optionally put the wxSTC on a panel instead of directly
authorRobin Dunn <robin@alldunn.com>
Tue, 27 Mar 2001 18:56:28 +0000 (18:56 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 27 Mar 2001 18:56:28 +0000 (18:56 +0000)
in the notebook.  This eliminates most (all?) of the flicker and
slowdown for wxSTC when in notebooks on wxGTK.  My guess is that
wxNotebook is broken, but this is an acceptable workaround.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9596 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/demo/wxStyledTextCtrl_1.py
wxPython/demo/wxStyledTextCtrl_2.py

index f7bf2212590f3efeb28a8d74063b24629272bbac..e8f725ee7157f9f44dcc9e4dafb15a91d4acec91 100644 (file)
@@ -96,8 +96,19 @@ class MySTC(wxStyledTextCtrl):
 
 #----------------------------------------------------------------------
 
+_USE_PANEL = 1
+
 def runTest(frame, nb, log):
-    ed = MySTC(nb, -1, log)
+    if not _USE_PANEL:
+        ed = p = MySTC(nb, -1, log)
+
+    else:
+        p = wxPanel(nb, -1)
+        ed = MySTC(p, -1, log)
+        s = wxBoxSizer(wxHORIZONTAL)
+        s.Add(ed, 1, wxEXPAND)
+        p.SetSizer(s)
+        p.SetAutoLayout(true)
 
     ed.SetText(demoText)
     ed.EmptyUndoBuffer()
@@ -158,7 +169,7 @@ def runTest(frame, nb, log):
     ed.SetStyling(10, wxSTC_INDIC2_MASK | wxSTC_INDIC1_MASK)
 
 
-    return ed
+    return p
 
 
 
index ee2570b9d387567622daa961366a135823e6446f..bd59137245e9c20ede01036f6dd44bf30cf796a5 100644 (file)
@@ -12,7 +12,7 @@ demoText = """\
 
 
 """
-
+wxSTC_CMD_ZOOMIN
 #----------------------------------------------------------------------
 
 
@@ -265,8 +265,19 @@ class PythonSTC(wxStyledTextCtrl):
 
 #----------------------------------------------------------------------
 
+_USE_PANEL = 1
+
 def runTest(frame, nb, log):
-    ed = PythonSTC(nb, -1)
+    if not _USE_PANEL:
+        ed = p = PythonSTC(nb, -1)
+    else:
+        p = wxPanel(nb, -1)
+        ed = PythonSTC(p, -1)
+        s = wxBoxSizer(wxHORIZONTAL)
+        s.Add(ed, 1, wxEXPAND)
+        p.SetSizer(s)
+        p.SetAutoLayout(true)
+
 
     ed.SetText(demoText + open('Main.py').read())
     ed.EmptyUndoBuffer()
@@ -276,7 +287,7 @@ def runTest(frame, nb, log):
     ed.SetMarginType(1, wxSTC_MARGIN_NUMBER)
     ed.SetMarginWidth(1, 25)
 
-    return ed
+    return p