2 #----------------------------------------------------------------------------
4 # Purpose: Testing lots of stuff, controls, window types, etc.
6 # Author: Robin Dunn & Gary Dumer
10 # Copyright: (c) 1999 by Total Control Software
11 # Licence: wxWindows license
12 #----------------------------------------------------------------------------
15 from wxPython
.wx
import *
16 from wxPython
.lib
.splashscreen
import SplashScreen
18 #---------------------------------------------------------------------------
21 _useNestedSplitter
= true
24 ('New since last release', []),
26 ('Managed Windows', ['wxFrame', 'wxDialog', 'wxMiniFrame']),
28 ('Non-Managed Windows', ['wxGrid', 'wxSashWindow',
29 'wxScrolledWindow', 'wxSplitterWindow',
30 'wxStatusBar', 'wxNotebook',
33 ('Common Dialogs', ['wxColourDialog', 'wxDirDialog', 'wxFileDialog',
34 'wxSingleChoiceDialog', 'wxTextEntryDialog',
35 'wxFontDialog', 'wxPageSetupDialog', 'wxPrintDialog',
36 'wxMessageDialog', 'wxProgressDialog']),
38 ('Controls', ['wxButton', 'wxCheckBox', 'wxCheckListBox', 'wxChoice',
39 'wxComboBox', 'wxGauge', 'wxListBox', 'wxListCtrl', 'wxTextCtrl',
40 'wxTreeCtrl', 'wxSpinButton', 'wxStaticText', 'wxStaticBitmap',
41 'wxRadioBox', 'wxSlider', 'wxToolBar', #'wxToggleButton'
44 ('Window Layout', ['wxLayoutConstraints', 'Sizers', 'OldSizers']),
46 ('Miscellaneous', [ 'DragAndDrop', 'CustomDragAndDrop', 'FontEnumerator',
47 'wxTimer', 'wxValidator', 'wxGLCanvas', 'DialogUnits',
48 'wxImage', 'wxMask', 'PrintFramework', 'wxOGL',
49 'PythonEvents', 'Threads']),
51 ('wxPython Library', ['Layoutf', 'wxScrolledMessageDialog',
52 'wxMultipleChoiceDialog', 'wxPlotCanvas', 'wxFloatBar',
53 'PyShell', 'wxCalendar', 'wxMVCTree', 'wxVTKRenderWindow',
54 'FileBrowseButton', 'GenericButtons', 'wxEditor']),
56 ('Cool Contribs', ['pyTree', 'hangman', 'SlashDot', 'XMLtreeview']),
60 #---------------------------------------------------------------------------
62 class wxPythonDemo(wxFrame
):
63 def __init__(self
, parent
, id, title
):
64 wxFrame
.__init
__(self
, parent
, -1, title
, size
= (725, 550))
66 self
.cwd
= os
.getcwd()
68 if wxPlatform
== '__WXMSW__':
69 self
.icon
= wxIcon('bitmaps/mondrian.ico', wxBITMAP_TYPE_ICO
)
70 self
.SetIcon(self
.icon
)
73 EVT_IDLE(self
, self
.OnIdle
)
76 self
.CreateStatusBar(1, wxST_SIZEGRIP
)
79 splitter
= wxSplitterWindow(self
, -1)
80 if _useNestedSplitter
:
81 splitter2
= wxSplitterWindow(splitter
, -1)
82 logParent
= nbParent
= splitter2
85 logParent
= wxFrame(self
, -1, "wxPython Demo: log window",
90 logParent
= wxFrame(self
, -1, "wxPython Demo: log window",
96 # Prevent TreeCtrl from displaying all items after destruction
100 self
.mainmenu
= wxMenuBar()
103 menu
.Append(exitID
, 'E&xit\tAlt-X', 'Get the heck outta here!')
104 EVT_MENU(self
, exitID
, self
.OnFileExit
)
105 self
.mainmenu
.Append(menu
, '&File')
109 for item
in _treeList
:
111 for childItem
in item
[1]:
113 submenu
.Append(mID
, childItem
)
114 EVT_MENU(self
, mID
, self
.OnDemoMenu
)
115 menu
.AppendMenu(wxNewId(), item
[0], submenu
)
116 self
.mainmenu
.Append(menu
, '&Demo')
122 menu
.Append(helpID
, '&About\tCtrl-H', 'wxPython RULES!!!')
123 EVT_MENU(self
, helpID
, self
.OnHelpAbout
)
124 self
.mainmenu
.Append(menu
, '&Help')
125 self
.SetMenuBar(self
.mainmenu
)
127 # set the menu accellerator table...
128 aTable
= wxAcceleratorTable([(wxACCEL_ALT
, ord('X'), exitID
),
129 (wxACCEL_CTRL
, ord('H'), helpID
)])
130 self
.SetAcceleratorTable(aTable
)
137 self
.tree
= wxTreeCtrl(splitter
, tID
)
138 #self.tree.SetBackgroundColour(wxNamedColour("Pink"))
139 root
= self
.tree
.AddRoot("Overview")
141 for item
in _treeList
:
142 child
= self
.tree
.AppendItem(root
, item
[0])
143 if not firstChild
: firstChild
= child
144 for childItem
in item
[1]:
145 theDemo
= self
.tree
.AppendItem(child
, childItem
)
146 self
.treeMap
[childItem
] = theDemo
148 self
.tree
.Expand(root
)
149 self
.tree
.Expand(firstChild
)
150 EVT_TREE_ITEM_EXPANDED (self
.tree
, tID
, self
.OnItemExpanded
)
151 EVT_TREE_ITEM_COLLAPSED (self
.tree
, tID
, self
.OnItemCollapsed
)
152 EVT_TREE_SEL_CHANGED (self
.tree
, tID
, self
.OnSelChanged
)
155 self
.nb
= wxNotebook(nbParent
, -1)
157 # Set up a TextCtrl on the Overview Notebook page
158 self
.ovr
= wxTextCtrl(self
.nb
, -1, style
= wxTE_MULTILINE|wxTE_READONLY
)
159 self
.nb
.AddPage(self
.ovr
, "Overview")
162 # Set up a TextCtrl on the Demo Code Notebook page
163 self
.txt
= wxTextCtrl(self
.nb
, -1,
164 style
= wxTE_MULTILINE|wxTE_READONLY|wxHSCROLL
)
165 self
.txt
.SetFont(wxFont(9, wxMODERN
, wxNORMAL
, wxNORMAL
, false
))
166 self
.nb
.AddPage(self
.txt
, "Demo Code")
169 # Set up a log on the View Log Notebook page
170 self
.log
= wxTextCtrl(logParent
, -1,
171 style
= wxTE_MULTILINE|wxTE_READONLY|wxHSCROLL
)
172 (w
, self
.charHeight
) = self
.log
.GetTextExtent('X')
173 self
.WriteText('wxPython Demo Log:\n')
177 # add the windows to the splitter and split it.
179 if _useNestedSplitter
:
180 splitter2
.SplitHorizontally(self
.nb
, self
.log
)
181 splitter2
.SetSashPosition(360, true
)
182 splitter2
.SetMinimumPaneSize(20)
184 splitter
.SplitVertically(self
.tree
, splitter2
)
186 splitter
.SplitVertically(self
.tree
, self
.nb
)
188 splitter
.SetSashPosition(180, true
)
189 splitter
.SetMinimumPaneSize(20)
192 # make our log window be stdout
195 # select initial items
196 self
.nb
.SetSelection(0)
198 self
.tree
.SelectItem(root
)
200 if len(sys
.argv
) == 2:
202 selectedDemo
= self
.treeMap
[sys
.argv
[1]]
205 if selectedDemo
and _useSplitter
:
206 self
.tree
.SelectItem(selectedDemo
)
207 self
.tree
.EnsureVisible(selectedDemo
)
210 self
.WriteText('window handle: %s\n' % self
.GetHandle())
213 #---------------------------------------------
214 def WriteText(self
, text
):
215 self
.log
.WriteText(text
)
216 w
, h
= self
.log
.GetClientSizeTuple()
217 numLines
= h
/self
.charHeight
218 x
, y
= self
.log
.PositionToXY(self
.log
.GetLastPosition())
220 self
.log
.ShowPosition(self
.log
.XYToPosition(x
, y
-numLines
))
221 ##self.log.ShowPosition(self.log.GetLastPosition())
222 self
.log
.SetInsertionPointEnd()
224 def write(self
, txt
):
227 #---------------------------------------------
228 def OnItemExpanded(self
, event
):
229 item
= event
.GetItem()
230 self
.log
.WriteText("OnItemExpanded: %s\n" % self
.tree
.GetItemText(item
))
232 #---------------------------------------------
233 def OnItemCollapsed(self
, event
):
234 item
= event
.GetItem()
235 self
.log
.WriteText("OnItemCollapsed: %s\n" % self
.tree
.GetItemText(item
))
237 #---------------------------------------------
238 def OnSelChanged(self
, event
):
242 item
= event
.GetItem()
243 itemText
= self
.tree
.GetItemText(item
)
244 self
.RunDemo(itemText
)
247 #---------------------------------------------
248 def RunDemo(self
, itemText
):
250 if self
.nb
.GetPageCount() == 3:
251 if self
.nb
.GetSelection() == 2:
252 self
.nb
.SetSelection(0)
253 self
.nb
.DeletePage(2)
255 if itemText
== 'Overview':
256 self
.GetDemoFile('Main.py')
257 self
.SetOverview('Overview', overview
)
262 if os
.path
.exists(itemText
+ '.py'):
264 self
.GetDemoFile(itemText
+ '.py')
265 module
= __import__(itemText
, globals())
266 self
.SetOverview(itemText
, module
.overview
)
269 # in case runTest is modal, make sure things look right...
273 self
.window
= module
.runTest(self
, self
.nb
, self
)
275 self
.nb
.AddPage(self
.window
, 'Demo')
277 self
.nb
.SetSelection(2)
286 #---------------------------------------------
288 def GetDemoFile(self
, filename
):
290 #if not self.txt.LoadFile(filename):
291 # self.txt.WriteText("Cannot open %s file." % filename)
293 self
.txt
.SetValue(open(filename
).read())
295 self
.txt
.WriteText("Cannot open %s file." % filename
)
298 self
.txt
.SetInsertionPoint(0)
299 self
.txt
.ShowPosition(0)
301 #---------------------------------------------
302 def SetOverview(self
, name
, text
):
304 self
.ovr
.WriteText(text
)
305 self
.nb
.SetPageText(0, name
)
306 self
.ovr
.SetInsertionPoint(0)
307 self
.ovr
.ShowPosition(0)
309 #---------------------------------------------
311 def OnFileExit(self
, event
):
315 def OnHelpAbout(self
, event
):
316 #about = wxMessageDialog(self,
317 # "wxPython is a Python extension module that\n"
318 # "encapsulates the wxWindows GUI classes.\n\n"
319 # "This demo shows off some of the capabilities\n"
321 # " Developed by Robin Dunn",
322 # "About wxPython", wxOK)
323 from About
import MyAboutBox
324 about
= MyAboutBox(self
)
329 #---------------------------------------------
330 def OnCloseWindow(self
, event
):
336 #---------------------------------------------
337 def OnIdle(self
, event
):
339 self
.otherWin
.Raise()
340 self
.window
= self
.otherWin
343 #---------------------------------------------
344 def OnDemoMenu(self
, event
):
347 selectedDemo
= self
.treeMap
[self
.mainmenu
.GetLabel(event
.GetId())]
351 self
.tree
.SelectItem(selectedDemo
)
352 self
.tree
.EnsureVisible(selectedDemo
)
354 self
.RunDemo(self
.mainmenu
.GetLabel(event
.GetId()))
356 #---------------------------------------------------------------------------
357 #---------------------------------------------------------------------------
361 wxImage_AddHandler(wxJPEGHandler())
362 wxImage_AddHandler(wxPNGHandler())
363 wxImage_AddHandler(wxGIFHandler())
365 self
.splash
= SplashScreen(None, bitmapfile
='bitmaps/splash.gif',
366 duration
=4000, callback
=self
.AfterSplash
)
367 self
.splash
.Show(true
)
371 def AfterSplash(self
):
372 self
.splash
.Close(true
)
373 frame
= wxPythonDemo(None, -1, "wxPython: (A Demonstration)")
375 self
.SetTopWindow(frame
)
378 #---------------------------------------------------------------------------
382 demoPath
= os
.path
.split(__file__
)[0]
390 #---------------------------------------------------------------------------
398 Python is an interpreted, interactive, object-oriented programming language often compared to Tcl, Perl, Scheme, or Java.
400 Python combines remarkable power with very clear syntax. It has modules, classes, exceptions, very high level dynamic data types, and dynamic typing. There are interfaces to many system calls and libraries, and new built-in modules are easily written in C or C++. Python is also usable as an extension language for applications that need a programmable interface.
405 wxWindows is a free C++ framework designed to make cross-platform programming child's play. Well, almost. wxWindows 2 supports Windows 3.1/95/98/NT, Unix with GTK/Motif/Lesstif, with a Mac version underway. Other ports are under consideration.
407 wxWindows is a set of libraries that allows C++ applications to compile and run on several different types of computers, with minimal source code changes. There is one library per supported GUI (such as Motif, or Windows). As well as providing a common API (Application Programming Interface) for GUI functionality, it provides functionality for accessing some commonly-used operating system facilities, such as copying or deleting files. wxWindows is a 'framework' in the sense that it provides a lot of built-in functionality, which the application can use or replace as required, thus saving a great deal of coding effort. Basic data structures such as strings, linked lists and hash tables are also supported.
412 wxPython is a Python extension module that encapsulates the wxWindows GUI classes. Currently it is only available for the Win32 and GTK ports of wxWindows, but as soon as the other ports are brought up to the same level as Win32 and GTK, it should be fairly trivial to enable wxPython to be used with the new GUI.
414 The wxPython extension module attempts to mirror the class heiarchy of wxWindows as closely as possible. This means that there is a wxFrame class in wxPython that looks, smells, tastes and acts almost the same as the wxFrame class in the C++ version. Unfortunately, because of differences in the languages, wxPython doesn't match wxWindows exactly, but the differences should be easy to absorb because they are natural to Python. For example, some methods that return multiple values via argument pointers in C++ will return a tuple of values in Python.
416 There is still much to be done for wxPython, many classes still need to be mirrored. Also, wxWindows is still somewhat of a moving target so it is a bit of an effort just keeping wxPython up to date. On the other hand, there are enough of the core classes completed that useful applications can be written.
418 wxPython is close enough to the C++ version that the majority of the wxPython documentation is actually just notes attached to the C++ documents that describe the places where wxPython is different. There is also a series of sample programs included, and a series of documentation pages that assist the programmer in getting started with wxPython.
427 #----------------------------------------------------------------------------
428 #----------------------------------------------------------------------------
430 if __name__
== '__main__':
433 #----------------------------------------------------------------------------