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', ['wxMVCTree', 'wxVTKRenderWindow',
25 'FileBrowseButton', 'GenericButtons',
26 'wxMask', 'wxEditor']),
28 ('Managed Windows', ['wxFrame', 'wxDialog', 'wxMiniFrame']),
30 ('Non-Managed Windows', ['wxGrid', 'wxSashWindow',
31 'wxScrolledWindow', 'wxSplitterWindow',
32 'wxStatusBar', 'wxNotebook',
35 ('Common Dialogs', ['wxColourDialog', 'wxDirDialog', 'wxFileDialog',
36 'wxSingleChoiceDialog', 'wxTextEntryDialog',
37 'wxFontDialog', 'wxPageSetupDialog', 'wxPrintDialog',
38 'wxMessageDialog', 'wxProgressDialog']),
40 ('Controls', ['wxButton', 'wxCheckBox', 'wxCheckListBox', 'wxChoice',
41 'wxComboBox', 'wxGauge', 'wxListBox', 'wxListCtrl', 'wxTextCtrl',
42 'wxTreeCtrl', 'wxSpinButton', 'wxStaticText', 'wxStaticBitmap',
43 'wxRadioBox', 'wxSlider', 'wxToolBar', #'wxToggleButton'
46 ('Window Layout', ['wxLayoutConstraints', 'Sizers', 'OldSizers']),
48 ('Miscellaneous', [ 'DragAndDrop', 'CustomDragAndDrop', 'FontEnumerator',
49 'wxTimer', 'wxValidator', 'wxGLCanvas', 'DialogUnits',
50 'wxImage', 'wxMask', 'PrintFramework', 'wxOGL',
51 'PythonEvents', 'Threads']),
53 ('wxPython Library', ['Layoutf', 'wxScrolledMessageDialog',
54 'wxMultipleChoiceDialog', 'wxPlotCanvas', 'wxFloatBar',
55 'PyShell', 'wxCalendar', 'wxMVCTree', 'wxVTKRenderWindow',
56 'FileBrowseButton', 'GenericButtons', 'wxEditor']),
58 ('Cool Contribs', ['pyTree', 'hangman', 'SlashDot', 'XMLtreeview']),
62 #---------------------------------------------------------------------------
64 class wxPythonDemo(wxFrame
):
65 def __init__(self
, parent
, id, title
):
66 wxFrame
.__init
__(self
, parent
, -1, title
, size
= (725, 550))
68 self
.cwd
= os
.getcwd()
70 if wxPlatform
== '__WXMSW__':
71 self
.icon
= wxIcon('bitmaps/mondrian.ico', wxBITMAP_TYPE_ICO
)
72 self
.SetIcon(self
.icon
)
75 EVT_IDLE(self
, self
.OnIdle
)
78 self
.CreateStatusBar(1, wxST_SIZEGRIP
)
81 splitter
= wxSplitterWindow(self
, -1)
82 if _useNestedSplitter
:
83 splitter2
= wxSplitterWindow(splitter
, -1)
84 logParent
= nbParent
= splitter2
87 logParent
= wxFrame(self
, -1, "wxPython Demo: log window",
92 logParent
= wxFrame(self
, -1, "wxPython Demo: log window",
98 # Prevent TreeCtrl from displaying all items after destruction
102 self
.mainmenu
= wxMenuBar()
105 menu
.Append(exitID
, 'E&xit\tAlt-X', 'Get the heck outta here!')
106 EVT_MENU(self
, exitID
, self
.OnFileExit
)
107 self
.mainmenu
.Append(menu
, '&File')
111 for item
in _treeList
:
113 for childItem
in item
[1]:
115 submenu
.Append(mID
, childItem
)
116 EVT_MENU(self
, mID
, self
.OnDemoMenu
)
117 menu
.AppendMenu(wxNewId(), item
[0], submenu
)
118 self
.mainmenu
.Append(menu
, '&Demo')
124 menu
.Append(helpID
, '&About\tCtrl-H', 'wxPython RULES!!!')
125 EVT_MENU(self
, helpID
, self
.OnHelpAbout
)
126 self
.mainmenu
.Append(menu
, '&Help')
127 self
.SetMenuBar(self
.mainmenu
)
129 # set the menu accellerator table...
130 aTable
= wxAcceleratorTable([(wxACCEL_ALT
, ord('X'), exitID
),
131 (wxACCEL_CTRL
, ord('H'), helpID
)])
132 self
.SetAcceleratorTable(aTable
)
139 self
.tree
= wxTreeCtrl(splitter
, tID
)
140 #self.tree.SetBackgroundColour(wxNamedColour("Pink"))
141 root
= self
.tree
.AddRoot("Overview")
143 for item
in _treeList
:
144 child
= self
.tree
.AppendItem(root
, item
[0])
145 if not firstChild
: firstChild
= child
146 for childItem
in item
[1]:
147 theDemo
= self
.tree
.AppendItem(child
, childItem
)
148 self
.treeMap
[childItem
] = theDemo
150 self
.tree
.Expand(root
)
151 self
.tree
.Expand(firstChild
)
152 EVT_TREE_ITEM_EXPANDED (self
.tree
, tID
, self
.OnItemExpanded
)
153 EVT_TREE_ITEM_COLLAPSED (self
.tree
, tID
, self
.OnItemCollapsed
)
154 EVT_TREE_SEL_CHANGED (self
.tree
, tID
, self
.OnSelChanged
)
157 self
.nb
= wxNotebook(nbParent
, -1)
159 # Set up a TextCtrl on the Overview Notebook page
160 self
.ovr
= wxTextCtrl(self
.nb
, -1, style
= wxTE_MULTILINE|wxTE_READONLY
)
161 self
.nb
.AddPage(self
.ovr
, "Overview")
164 # Set up a TextCtrl on the Demo Code Notebook page
165 self
.txt
= wxTextCtrl(self
.nb
, -1,
166 style
= wxTE_MULTILINE|wxTE_READONLY|wxHSCROLL
)
167 self
.txt
.SetFont(wxFont(9, wxMODERN
, wxNORMAL
, wxNORMAL
, false
))
168 self
.nb
.AddPage(self
.txt
, "Demo Code")
171 # Set up a log on the View Log Notebook page
172 self
.log
= wxTextCtrl(logParent
, -1,
173 style
= wxTE_MULTILINE|wxTE_READONLY|wxHSCROLL
)
174 (w
, self
.charHeight
) = self
.log
.GetTextExtent('X')
175 self
.WriteText('wxPython Demo Log:\n')
179 # add the windows to the splitter and split it.
181 if _useNestedSplitter
:
182 splitter2
.SplitHorizontally(self
.nb
, self
.log
)
183 splitter2
.SetSashPosition(360, true
)
184 splitter2
.SetMinimumPaneSize(20)
186 splitter
.SplitVertically(self
.tree
, splitter2
)
188 splitter
.SplitVertically(self
.tree
, self
.nb
)
190 splitter
.SetSashPosition(180, true
)
191 splitter
.SetMinimumPaneSize(20)
194 # make our log window be stdout
197 # select initial items
198 self
.nb
.SetSelection(0)
200 self
.tree
.SelectItem(root
)
202 if len(sys
.argv
) == 2:
204 selectedDemo
= self
.treeMap
[sys
.argv
[1]]
207 if selectedDemo
and _useSplitter
:
208 self
.tree
.SelectItem(selectedDemo
)
209 self
.tree
.EnsureVisible(selectedDemo
)
212 self
.WriteText('window handle: %s\n' % self
.GetHandle())
215 #---------------------------------------------
216 def WriteText(self
, text
):
217 self
.log
.WriteText(text
)
218 w
, h
= self
.log
.GetClientSizeTuple()
219 numLines
= h
/self
.charHeight
220 x
, y
= self
.log
.PositionToXY(self
.log
.GetLastPosition())
222 self
.log
.ShowPosition(self
.log
.XYToPosition(x
, y
-numLines
))
223 ##self.log.ShowPosition(self.log.GetLastPosition())
224 self
.log
.SetInsertionPointEnd()
226 def write(self
, txt
):
229 #---------------------------------------------
230 def OnItemExpanded(self
, event
):
231 item
= event
.GetItem()
232 self
.log
.WriteText("OnItemExpanded: %s\n" % self
.tree
.GetItemText(item
))
234 #---------------------------------------------
235 def OnItemCollapsed(self
, event
):
236 item
= event
.GetItem()
237 self
.log
.WriteText("OnItemCollapsed: %s\n" % self
.tree
.GetItemText(item
))
239 #---------------------------------------------
240 def OnSelChanged(self
, event
):
244 item
= event
.GetItem()
245 itemText
= self
.tree
.GetItemText(item
)
246 self
.RunDemo(itemText
)
249 #---------------------------------------------
250 def RunDemo(self
, itemText
):
252 if self
.nb
.GetPageCount() == 3:
253 if self
.nb
.GetSelection() == 2:
254 self
.nb
.SetSelection(0)
255 self
.nb
.DeletePage(2)
257 if itemText
== 'Overview':
258 self
.GetDemoFile('Main.py')
259 self
.SetOverview('Overview', overview
)
264 if os
.path
.exists(itemText
+ '.py'):
266 self
.GetDemoFile(itemText
+ '.py')
267 module
= __import__(itemText
, globals())
268 self
.SetOverview(itemText
, module
.overview
)
271 # in case runTest is modal, make sure things look right...
275 self
.window
= module
.runTest(self
, self
.nb
, self
)
277 self
.nb
.AddPage(self
.window
, 'Demo')
278 #self.nb.ResizeChildren()
279 self
.nb
.SetSelection(2)
280 #self.nb.ResizeChildren()
281 #if self.window.GetAutoLayout():
282 # self.window.Layout()
291 #---------------------------------------------
293 def GetDemoFile(self
, filename
):
295 #if not self.txt.LoadFile(filename):
296 # self.txt.WriteText("Cannot open %s file." % filename)
298 self
.txt
.SetValue(open(filename
).read())
300 self
.txt
.WriteText("Cannot open %s file." % filename
)
303 self
.txt
.SetInsertionPoint(0)
304 self
.txt
.ShowPosition(0)
306 #---------------------------------------------
307 def SetOverview(self
, name
, text
):
309 self
.ovr
.WriteText(text
)
310 self
.nb
.SetPageText(0, name
)
311 self
.ovr
.SetInsertionPoint(0)
312 self
.ovr
.ShowPosition(0)
314 #---------------------------------------------
316 def OnFileExit(self
, event
):
320 def OnHelpAbout(self
, event
):
321 #about = wxMessageDialog(self,
322 # "wxPython is a Python extension module that\n"
323 # "encapsulates the wxWindows GUI classes.\n\n"
324 # "This demo shows off some of the capabilities\n"
326 # " Developed by Robin Dunn",
327 # "About wxPython", wxOK)
328 from About
import MyAboutBox
329 about
= MyAboutBox(self
)
334 #---------------------------------------------
335 def OnCloseWindow(self
, event
):
341 #---------------------------------------------
342 def OnIdle(self
, event
):
344 self
.otherWin
.Raise()
345 self
.window
= self
.otherWin
348 #---------------------------------------------
349 def OnDemoMenu(self
, event
):
352 selectedDemo
= self
.treeMap
[self
.mainmenu
.GetLabel(event
.GetId())]
356 self
.tree
.SelectItem(selectedDemo
)
357 self
.tree
.EnsureVisible(selectedDemo
)
359 self
.RunDemo(self
.mainmenu
.GetLabel(event
.GetId()))
361 #---------------------------------------------------------------------------
362 #---------------------------------------------------------------------------
366 wxImage_AddHandler(wxJPEGHandler())
367 wxImage_AddHandler(wxPNGHandler())
368 wxImage_AddHandler(wxGIFHandler())
370 self
.splash
= SplashScreen(None, bitmapfile
='bitmaps/splash.gif',
371 duration
=4000, callback
=self
.AfterSplash
)
372 self
.splash
.Show(true
)
376 def AfterSplash(self
):
377 self
.splash
.Close(true
)
378 frame
= wxPythonDemo(None, -1, "wxPython: (A Demonstration)")
380 self
.SetTopWindow(frame
)
383 #---------------------------------------------------------------------------
387 demoPath
= os
.path
.split(__file__
)[0]
395 #---------------------------------------------------------------------------
403 Python is an interpreted, interactive, object-oriented programming language often compared to Tcl, Perl, Scheme, or Java.
405 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.
410 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.
412 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.
417 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.
419 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.
421 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.
423 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.
432 #----------------------------------------------------------------------------
433 #----------------------------------------------------------------------------
435 if __name__
== '__main__':
438 #----------------------------------------------------------------------------