1999-04-29 23:29:54 -04:00
|
|
|
|
|
|
|
from wxPython.wx import *
|
|
|
|
|
2003-03-25 01:35:27 -05:00
|
|
|
USE_GENERIC = 0
|
2002-07-08 16:06:13 -04:00
|
|
|
|
|
|
|
if USE_GENERIC:
|
|
|
|
from wxPython.lib.stattext import wxGenStaticText as wxStaticText
|
|
|
|
|
1999-04-29 23:29:54 -04:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class TestPanel(wxPanel):
|
|
|
|
def __init__(self, parent):
|
|
|
|
wxPanel.__init__(self, parent, -1)
|
|
|
|
|
2002-07-08 16:06:13 -04:00
|
|
|
wxStaticText(self, -1, "This is an example of static text", (20, 10))
|
|
|
|
|
|
|
|
wxStaticText(self, -1, "using the wxStaticText Control.", (20, 30))
|
|
|
|
|
|
|
|
wxStaticText(self, -1, "Is this yellow?", (20, 70), (90, -1)).SetBackgroundColour('Yellow')
|
1999-04-29 23:29:54 -04:00
|
|
|
|
2002-07-08 16:06:13 -04:00
|
|
|
wxStaticText(self, -1, "align center", (120, 70), (90, -1), wxALIGN_CENTER).SetBackgroundColour('Yellow')
|
1999-04-29 23:29:54 -04:00
|
|
|
|
2002-07-08 16:06:13 -04:00
|
|
|
wxStaticText(self, -1, "align right", (220, 70), (90, -1), wxALIGN_RIGHT).SetBackgroundColour('Yellow')
|
1999-04-29 23:29:54 -04:00
|
|
|
|
|
|
|
str = "This is a different font."
|
2002-07-08 16:06:13 -04:00
|
|
|
text = wxStaticText(self, -1, str, (20, 100))
|
2003-03-25 01:35:27 -05:00
|
|
|
font = wxFont(18, wxSWISS, wxNORMAL, wxNORMAL, False, "Arial")
|
1999-04-29 23:29:54 -04:00
|
|
|
w, h, d, e = self.GetFullTextExtent(str, font)
|
|
|
|
text.SetFont(font)
|
|
|
|
text.SetSize(wxSize(w, h))
|
|
|
|
|
2002-07-08 16:06:13 -04:00
|
|
|
wxStaticText(self, -1, "Multi-line wxStaticText\nline 2\nline 3\n\nafter empty line", (20,150))
|
|
|
|
wxStaticText(self, -1, "Align right multi-line\nline 2\nline 3\n\nafter empty line", (220,150), style=wxALIGN_RIGHT)
|
|
|
|
|
1999-04-29 23:29:54 -04:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def runTest(frame, nb, log):
|
|
|
|
panel = TestPanel(nb)
|
|
|
|
return panel
|
|
|
|
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
overview = '''\
|
|
|
|
A static text control displays one or more lines of read-only text.
|
|
|
|
|
|
|
|
'''
|
|
|
|
|
2002-07-08 16:06:13 -04:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys,os
|
|
|
|
import run
|
|
|
|
run.main(['', os.path.basename(sys.argv[0])])
|
|
|
|
|