X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d14a1e28567de23c586bc80017073d0c39f8d18f..61940a7061d0b5d5122b1e1e939cfa2d72596999:/wxPython/demo/FancyText.py diff --git a/wxPython/demo/FancyText.py b/wxPython/demo/FancyText.py index 1d3b46c581..8b08afe393 100644 --- a/wxPython/demo/FancyText.py +++ b/wxPython/demo/FancyText.py @@ -1,6 +1,21 @@ - -from wxPython.wx import * -from wxPython.lib import fancytext +# 11/5/2003 - Jeff Grimmett (grimmtooth@softhome.net) +# +# o Updated to wx namespace +# +# 11/25/2003 - Jeff Grimmett (grimmtooth@softhome.net) +# +# o Issues previously noted have evaporated. +# o Hoo boy, the doc string in the lib needs fixed :-) +# +# 12/02/2003 - Jeff Grimmett (grimmtooth@softhome.net) +# +# o Making the library's doc string acceptable for the overview rendered +# it unusable in the library's own test code, so I copied it over +# and massaged the XML into useful HTML. +# + +import wx +import wx.lib.fancytext as fancytext #---------------------------------------------------------------------- @@ -11,14 +26,13 @@ test_str = ('' test_str2 = 'big green text' -class TestPanel(wxPanel): +class TestPanel(wx.Panel): def __init__(self, parent): - wxPanel.__init__(self, parent, -1) - EVT_PAINT(self, self.OnPaint) - + wx.Panel.__init__(self, parent, -1) + self.Bind(wx.EVT_PAINT, self.OnPaint) def OnPaint(self, evt): - dc = wxPaintDC(self) + dc = wx.PaintDC(self) w, h = fancytext.GetExtent(test_str, dc) fancytext.RenderToDC(test_str, dc, 20, 20) @@ -36,8 +50,43 @@ def runTest(frame, nb, log): -overview = fancytext.__doc__.replace("<", "<") - +overview = \ +""" + + +

FancyText -- methods for rendering XML specified text

+ +

This module exports four main methods:: +

+    def GetExtent(str, dc=None, enclose=True)
+    def GetFullExtent(str, dc=None, enclose=True)
+    def RenderToBitmap(str, background=None, enclose=True)
+    def RenderToDC(str, dc, x, y, enclose=True)
+
+ +In all cases, 'str' is an XML string. Note that start and end tags +are only required if *enclose* is set to False. In this case the +text should be wrapped in FancyText tags. + +

In addition, the module exports one class:: +

+    class StaticFancyText(self, window, id, text, background, ...)
+
+This class works similar to StaticText except it interprets its text +as FancyText. + +

The text can supportsuperscripts and subscripts, text +in different sizes, colors, +styles, weights and +families. It also supports a limited set of symbols, +currently , , as well as greek letters in both +upper case (...) and lower case (...). + + +The End + + +"""