]> git.saurik.com Git - wxWidgets.git/blame - utils/wxPython/demo/Main.py
it is now possible to add custom buttons into wxHtmlHelpFrame's toolbar
[wxWidgets.git] / utils / wxPython / demo / Main.py
CommitLineData
cf694132
RD
1#!/bin/env python
2#----------------------------------------------------------------------------
3# Name: Main.py
4# Purpose: Testing lots of stuff, controls, window types, etc.
5#
6# Author: Robin Dunn & Gary Dumer
7#
8# Created:
9# RCS-ID: $Id$
10# Copyright: (c) 1999 by Total Control Software
11# Licence: wxWindows license
12#----------------------------------------------------------------------------
13
14import sys, os
15from wxPython.wx import *
9fb56e0c 16from wxPython.lib.splashscreen import SplashScreen
cf694132
RD
17
18#---------------------------------------------------------------------------
19
5a7823f5
RD
20_useSplitter = true
21_useNestedSplitter = true
cf694132
RD
22
23_treeList = [
694759cf 24 ('New since last release', ['wxMVCTree', 'wxVTKRenderWindow',
9b3d3bc4 25 'FileBrowseButton', 'GenericButtons',
1b55cabf 26 'wxMask', 'wxEditor']),
e395c057 27
cf694132
RD
28 ('Managed Windows', ['wxFrame', 'wxDialog', 'wxMiniFrame']),
29
b1462dfa 30 ('Non-Managed Windows', ['wxGrid', 'wxSashWindow',
cf694132 31 'wxScrolledWindow', 'wxSplitterWindow',
9b3d3bc4 32 'wxStatusBar', 'wxNotebook',
ec3e670f 33 'wxHtmlWindow']),
cf694132
RD
34
35 ('Common Dialogs', ['wxColourDialog', 'wxDirDialog', 'wxFileDialog',
36 'wxSingleChoiceDialog', 'wxTextEntryDialog',
37 'wxFontDialog', 'wxPageSetupDialog', 'wxPrintDialog',
bb0054cd 38 'wxMessageDialog', 'wxProgressDialog']),
cf694132
RD
39
40 ('Controls', ['wxButton', 'wxCheckBox', 'wxCheckListBox', 'wxChoice',
41 'wxComboBox', 'wxGauge', 'wxListBox', 'wxListCtrl', 'wxTextCtrl',
42 'wxTreeCtrl', 'wxSpinButton', 'wxStaticText', 'wxStaticBitmap',
9b3d3bc4 43 'wxRadioBox', 'wxSlider', 'wxToolBar', #'wxToggleButton'
6999b0d8 44 ]),
cf694132 45
2f90df85 46 ('Window Layout', ['wxLayoutConstraints', 'Sizers', 'OldSizers']),
cf694132 47
b1462dfa
RD
48 ('Miscellaneous', [ 'DragAndDrop', 'CustomDragAndDrop', 'FontEnumerator',
49 'wxTimer', 'wxValidator', 'wxGLCanvas', 'DialogUnits',
9b3d3bc4
RD
50 'wxImage', 'wxMask', 'PrintFramework', 'wxOGL',
51 'PythonEvents', 'Threads']),
cf694132 52
e0473f5f 53 ('wxPython Library', ['Layoutf', 'wxScrolledMessageDialog',
f0261a72 54 'wxMultipleChoiceDialog', 'wxPlotCanvas', 'wxFloatBar',
694759cf 55 'PyShell', 'wxCalendar', 'wxMVCTree', 'wxVTKRenderWindow',
1b55cabf 56 'FileBrowseButton', 'GenericButtons', 'wxEditor']),
cf694132 57
8bf5d46e 58 ('Cool Contribs', ['pyTree', 'hangman', 'SlashDot', 'XMLtreeview']),
cf694132
RD
59
60 ]
61
62#---------------------------------------------------------------------------
63
64class wxPythonDemo(wxFrame):
65 def __init__(self, parent, id, title):
2f90df85
RD
66 wxFrame.__init__(self, parent, -1, title, size = (725, 550))
67
694759cf
RD
68 self.cwd = os.getcwd()
69
cf694132
RD
70 if wxPlatform == '__WXMSW__':
71 self.icon = wxIcon('bitmaps/mondrian.ico', wxBITMAP_TYPE_ICO)
72 self.SetIcon(self.icon)
73
74 self.otherWin = None
75 EVT_IDLE(self, self.OnIdle)
76
77 self.Centre(wxBOTH)
78 self.CreateStatusBar(1, wxST_SIZEGRIP)
5a7823f5
RD
79
80 if _useSplitter:
81 splitter = wxSplitterWindow(self, -1)
82 if _useNestedSplitter:
83 splitter2 = wxSplitterWindow(splitter, -1)
84 logParent = nbParent = splitter2
85 else:
86 nbParent = splitter
87 logParent = wxFrame(self, -1, "wxPython Demo: log window",
88 (0,0), (500, 150))
89 logParent.Show(true)
90 else:
91 nbParent = self
92 logParent = wxFrame(self, -1, "wxPython Demo: log window",
93 (0,0), (500, 150))
94 logParent.Show(true)
95
96
cf694132
RD
97
98 # Prevent TreeCtrl from displaying all items after destruction
99 self.dying = false
100
101 # Make a File menu
102 self.mainmenu = wxMenuBar()
103 menu = wxMenu()
2f90df85 104 exitID = wxNewId()
f0261a72 105 menu.Append(exitID, 'E&xit\tAlt-X', 'Get the heck outta here!')
2f90df85 106 EVT_MENU(self, exitID, self.OnFileExit)
cf694132
RD
107 self.mainmenu.Append(menu, '&File')
108
ec3e670f
RD
109 # Make a Demo menu
110 menu = wxMenu()
111 for item in _treeList:
112 submenu = wxMenu()
113 for childItem in item[1]:
114 mID = wxNewId()
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')
119
120
cf694132 121 # Make a Help menu
2f90df85 122 helpID = wxNewId()
cf694132 123 menu = wxMenu()
2f90df85
RD
124 menu.Append(helpID, '&About\tCtrl-H', 'wxPython RULES!!!')
125 EVT_MENU(self, helpID, self.OnHelpAbout)
cf694132
RD
126 self.mainmenu.Append(menu, '&Help')
127 self.SetMenuBar(self.mainmenu)
128
2f90df85 129 # set the menu accellerator table...
f0261a72 130 aTable = wxAcceleratorTable([(wxACCEL_ALT, ord('X'), exitID),
2f90df85
RD
131 (wxACCEL_CTRL, ord('H'), helpID)])
132 self.SetAcceleratorTable(aTable)
133
bb0054cd 134
cf694132 135 # Create a TreeCtrl
5a7823f5
RD
136 if _useSplitter:
137 tID = wxNewId()
138 self.treeMap = {}
139 self.tree = wxTreeCtrl(splitter, tID)
b7e72427 140 #self.tree.SetBackgroundColour(wxNamedColour("Pink"))
5a7823f5 141 root = self.tree.AddRoot("Overview")
6999b0d8 142 firstChild = None
5a7823f5
RD
143 for item in _treeList:
144 child = self.tree.AppendItem(root, item[0])
6999b0d8 145 if not firstChild: firstChild = child
5a7823f5
RD
146 for childItem in item[1]:
147 theDemo = self.tree.AppendItem(child, childItem)
148 self.treeMap[childItem] = theDemo
149
150 self.tree.Expand(root)
6999b0d8 151 self.tree.Expand(firstChild)
5a7823f5
RD
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)
cf694132 155
cf694132 156 # Create a Notebook
5a7823f5 157 self.nb = wxNotebook(nbParent, -1)
cf694132
RD
158
159 # Set up a TextCtrl on the Overview Notebook page
efc5f224 160 self.ovr = wxTextCtrl(self.nb, -1, style = wxTE_MULTILINE|wxTE_READONLY)
cf694132
RD
161 self.nb.AddPage(self.ovr, "Overview")
162
163
164 # Set up a TextCtrl on the Demo Code Notebook page
efc5f224
RD
165 self.txt = wxTextCtrl(self.nb, -1,
166 style = wxTE_MULTILINE|wxTE_READONLY|wxHSCROLL)
bb0054cd 167 self.txt.SetFont(wxFont(9, wxMODERN, wxNORMAL, wxNORMAL, false))
cf694132
RD
168 self.nb.AddPage(self.txt, "Demo Code")
169
170
cf694132 171 # Set up a log on the View Log Notebook page
5a7823f5 172 self.log = wxTextCtrl(logParent, -1,
efc5f224 173 style = wxTE_MULTILINE|wxTE_READONLY|wxHSCROLL)
cf694132 174 (w, self.charHeight) = self.log.GetTextExtent('X')
e166644c 175 self.WriteText('wxPython Demo Log:\n')
cf694132 176
e0473f5f 177 self.Show(true)
cf694132
RD
178
179 # add the windows to the splitter and split it.
5a7823f5
RD
180 if _useSplitter:
181 if _useNestedSplitter:
182 splitter2.SplitHorizontally(self.nb, self.log)
183 splitter2.SetSashPosition(360, true)
184 splitter2.SetMinimumPaneSize(20)
185
186 splitter.SplitVertically(self.tree, splitter2)
187 else:
188 splitter.SplitVertically(self.tree, self.nb)
189
190 splitter.SetSashPosition(180, true)
191 splitter.SetMinimumPaneSize(20)
cf694132 192
cf694132
RD
193
194 # make our log window be stdout
c127177f 195 #sys.stdout = self
cf694132 196
bb0054cd
RD
197 # select initial items
198 self.nb.SetSelection(0)
5a7823f5
RD
199 if _useSplitter:
200 self.tree.SelectItem(root)
ec3e670f
RD
201
202 if len(sys.argv) == 2:
203 try:
204 selectedDemo = self.treeMap[sys.argv[1]]
205 except:
206 selectedDemo = None
5a7823f5 207 if selectedDemo and _useSplitter:
ec3e670f
RD
208 self.tree.SelectItem(selectedDemo)
209 self.tree.EnsureVisible(selectedDemo)
210
bb0054cd 211
33a43c5e 212 self.WriteText('window handle: %s\n' % self.GetHandle())
2abc0a0f
RD
213
214
cf694132
RD
215 #---------------------------------------------
216 def WriteText(self, text):
217 self.log.WriteText(text)
53920141
RD
218 w, h = self.log.GetClientSizeTuple()
219 numLines = h/self.charHeight
220 x, y = self.log.PositionToXY(self.log.GetLastPosition())
e166644c
RD
221 if y > numLines:
222 self.log.ShowPosition(self.log.XYToPosition(x, y-numLines))
223 ##self.log.ShowPosition(self.log.GetLastPosition())
64be6958 224 self.log.SetInsertionPointEnd()
cf694132
RD
225
226 def write(self, txt):
227 self.WriteText(txt)
228
229 #---------------------------------------------
230 def OnItemExpanded(self, event):
231 item = event.GetItem()
232 self.log.WriteText("OnItemExpanded: %s\n" % self.tree.GetItemText(item))
233
234 #---------------------------------------------
235 def OnItemCollapsed(self, event):
236 item = event.GetItem()
237 self.log.WriteText("OnItemCollapsed: %s\n" % self.tree.GetItemText(item))
238
239 #---------------------------------------------
240 def OnSelChanged(self, event):
241 if self.dying:
242 return
243
5a7823f5
RD
244 item = event.GetItem()
245 itemText = self.tree.GetItemText(item)
246 self.RunDemo(itemText)
247
248
249 #---------------------------------------------
250 def RunDemo(self, itemText):
694759cf 251 os.chdir(self.cwd)
cf694132
RD
252 if self.nb.GetPageCount() == 3:
253 if self.nb.GetSelection() == 2:
254 self.nb.SetSelection(0)
255 self.nb.DeletePage(2)
256
cf694132
RD
257 if itemText == 'Overview':
258 self.GetDemoFile('Main.py')
259 self.SetOverview('Overview', overview)
cf694132 260 self.nb.Refresh();
e91a9dfc 261 self.window = None
cf694132
RD
262
263 else:
264 if os.path.exists(itemText + '.py'):
9d8bd15f 265 wxBeginBusyCursor()
cf694132
RD
266 self.GetDemoFile(itemText + '.py')
267 module = __import__(itemText, globals())
268 self.SetOverview(itemText, module.overview)
9d8bd15f 269 wxEndBusyCursor()
cf694132
RD
270
271 # in case runTest is modal, make sure things look right...
272 self.nb.Refresh();
273 wxYield()
274
e91a9dfc
RD
275 self.window = module.runTest(self, self.nb, self)
276 if self.window:
277 self.nb.AddPage(self.window, 'Demo')
5a7823f5 278 #self.nb.ResizeChildren()
cf694132 279 self.nb.SetSelection(2)
9d8bd15f 280 #self.nb.ResizeChildren()
5a7823f5
RD
281 #if self.window.GetAutoLayout():
282 # self.window.Layout()
cf694132
RD
283
284 else:
285 self.ovr.Clear()
286 self.txt.Clear()
e91a9dfc 287 self.window = None
cf694132 288
2f90df85 289
cf694132
RD
290
291 #---------------------------------------------
292 # Get the Demo files
293 def GetDemoFile(self, filename):
294 self.txt.Clear()
bb0054cd
RD
295 #if not self.txt.LoadFile(filename):
296 # self.txt.WriteText("Cannot open %s file." % filename)
297 try:
298 self.txt.SetValue(open(filename).read())
8bf5d46e 299 except IOError:
cf694132
RD
300 self.txt.WriteText("Cannot open %s file." % filename)
301
bb0054cd 302
cf694132
RD
303 self.txt.SetInsertionPoint(0)
304 self.txt.ShowPosition(0)
305
306 #---------------------------------------------
307 def SetOverview(self, name, text):
308 self.ovr.Clear()
309 self.ovr.WriteText(text)
310 self.nb.SetPageText(0, name)
311 self.ovr.SetInsertionPoint(0)
312 self.ovr.ShowPosition(0)
313
314 #---------------------------------------------
315 # Menu methods
316 def OnFileExit(self, event):
317 self.Close()
318
319
320 def OnHelpAbout(self, event):
ec3e670f
RD
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"
325 # "of wxPython.\n\n"
326 # " Developed by Robin Dunn",
327 # "About wxPython", wxOK)
e166644c 328 from About import MyAboutBox
ec3e670f 329 about = MyAboutBox(self)
cf694132
RD
330 about.ShowModal()
331 about.Destroy()
332
333
334 #---------------------------------------------
335 def OnCloseWindow(self, event):
336 self.dying = true
e91a9dfc 337 self.window = None
26197023 338 self.mainmenu = None
cf694132
RD
339 self.Destroy()
340
341 #---------------------------------------------
342 def OnIdle(self, event):
343 if self.otherWin:
344 self.otherWin.Raise()
e91a9dfc 345 self.window = self.otherWin
cf694132
RD
346 self.otherWin = None
347
ec3e670f
RD
348 #---------------------------------------------
349 def OnDemoMenu(self, event):
5a7823f5
RD
350 if _useSplitter:
351 try:
352 selectedDemo = self.treeMap[self.mainmenu.GetLabel(event.GetId())]
353 except:
354 selectedDemo = None
355 if selectedDemo:
356 self.tree.SelectItem(selectedDemo)
357 self.tree.EnsureVisible(selectedDemo)
358 else:
359 self.RunDemo(self.mainmenu.GetLabel(event.GetId()))
ec3e670f 360
cf694132
RD
361#---------------------------------------------------------------------------
362#---------------------------------------------------------------------------
363
364class MyApp(wxApp):
365 def OnInit(self):
366 wxImage_AddHandler(wxJPEGHandler())
367 wxImage_AddHandler(wxPNGHandler())
368 wxImage_AddHandler(wxGIFHandler())
9fb56e0c
RD
369
370 self.splash = SplashScreen(None, bitmapfile='bitmaps/splash.gif',
371 duration=4000, callback=self.AfterSplash)
372 self.splash.Show(true)
373 wxYield()
374 return true
375
376 def AfterSplash(self):
377 self.splash.Close(true)
378 frame = wxPythonDemo(None, -1, "wxPython: (A Demonstration)")
cf694132
RD
379 frame.Show(true)
380 self.SetTopWindow(frame)
381 return true
382
383#---------------------------------------------------------------------------
384
385def main():
386 app = MyApp(0)
387 app.MainLoop()
388
389
390#---------------------------------------------------------------------------
391
392
393
394overview = """\
395Python
396------------
397
398Python is an interpreted, interactive, object-oriented programming language often compared to Tcl, Perl, Scheme, or Java.
399
400Python 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.
401
402wxWindows
403--------------------
404
405wxWindows 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.
406
407wxWindows 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.
408
409wxPython
410----------------
411
412wxPython 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.
413
414The 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.
415
416There 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.
417
418wxPython 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.
419"""
420
421
422
423
424
425
426
427#----------------------------------------------------------------------------
428#----------------------------------------------------------------------------
429
430if __name__ == '__main__':
431 main()
432
433#----------------------------------------------------------------------------
434
435
436
437
438
439
440