]> git.saurik.com Git - wxWidgets.git/blame - utils/wxPython/demo/Main.py
updated generated sources
[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 *
16
17
18#---------------------------------------------------------------------------
19
20
21_treeList = [
22 ('Managed Windows', ['wxFrame', 'wxDialog', 'wxMiniFrame']),
23
24 ('Miscellaneous Windows', ['wxGrid', 'wxSashWindow',
25 'wxScrolledWindow', 'wxSplitterWindow',
ec3e670f
RD
26 'wxStatusBar', 'wxToolBar', 'wxNotebook',
27 'wxHtmlWindow']),
cf694132
RD
28
29 ('Common Dialogs', ['wxColourDialog', 'wxDirDialog', 'wxFileDialog',
30 'wxSingleChoiceDialog', 'wxTextEntryDialog',
31 'wxFontDialog', 'wxPageSetupDialog', 'wxPrintDialog',
bb0054cd 32 'wxMessageDialog', 'wxProgressDialog']),
cf694132
RD
33
34 ('Controls', ['wxButton', 'wxCheckBox', 'wxCheckListBox', 'wxChoice',
35 'wxComboBox', 'wxGauge', 'wxListBox', 'wxListCtrl', 'wxTextCtrl',
36 'wxTreeCtrl', 'wxSpinButton', 'wxStaticText', 'wxStaticBitmap',
37 'wxRadioBox', 'wxSlider']),
38
2f90df85 39 ('Window Layout', ['wxLayoutConstraints', 'Sizers', 'OldSizers']),
cf694132 40
2f90df85
RD
41 ('Miscellaneous', ['wxTimer', 'wxValidator', 'wxGLCanvas', 'DialogUnits',
42 'wxImage', 'PrintFramework', 'wxOGL']),
cf694132 43
2f90df85 44 ('wxPython Library', ['OldSizers', 'Layoutf', 'wxScrolledMessageDialog',
f0261a72
RD
45 'wxMultipleChoiceDialog', 'wxPlotCanvas', 'wxFloatBar',
46 'PyShell']),
cf694132 47
8bf5d46e 48 ('Cool Contribs', ['pyTree', 'hangman', 'SlashDot', 'XMLtreeview']),
cf694132
RD
49
50 ]
51
52#---------------------------------------------------------------------------
53
54class wxPythonDemo(wxFrame):
55 def __init__(self, parent, id, title):
2f90df85
RD
56 wxFrame.__init__(self, parent, -1, title, size = (725, 550))
57
cf694132
RD
58 if wxPlatform == '__WXMSW__':
59 self.icon = wxIcon('bitmaps/mondrian.ico', wxBITMAP_TYPE_ICO)
60 self.SetIcon(self.icon)
61
62 self.otherWin = None
63 EVT_IDLE(self, self.OnIdle)
64
65 self.Centre(wxBOTH)
66 self.CreateStatusBar(1, wxST_SIZEGRIP)
67 splitter = wxSplitterWindow(self, -1)
68 splitter2 = wxSplitterWindow(splitter, -1)
69
70 # Prevent TreeCtrl from displaying all items after destruction
71 self.dying = false
72
73 # Make a File menu
74 self.mainmenu = wxMenuBar()
75 menu = wxMenu()
2f90df85 76 exitID = wxNewId()
f0261a72 77 menu.Append(exitID, 'E&xit\tAlt-X', 'Get the heck outta here!')
2f90df85 78 EVT_MENU(self, exitID, self.OnFileExit)
cf694132
RD
79 self.mainmenu.Append(menu, '&File')
80
ec3e670f
RD
81 # Make a Demo menu
82 menu = wxMenu()
83 for item in _treeList:
84 submenu = wxMenu()
85 for childItem in item[1]:
86 mID = wxNewId()
87 submenu.Append(mID, childItem)
88 EVT_MENU(self, mID, self.OnDemoMenu)
89 menu.AppendMenu(wxNewId(), item[0], submenu)
90 self.mainmenu.Append(menu, '&Demo')
91
92
cf694132 93 # Make a Help menu
2f90df85 94 helpID = wxNewId()
cf694132 95 menu = wxMenu()
2f90df85
RD
96 menu.Append(helpID, '&About\tCtrl-H', 'wxPython RULES!!!')
97 EVT_MENU(self, helpID, self.OnHelpAbout)
cf694132
RD
98 self.mainmenu.Append(menu, '&Help')
99 self.SetMenuBar(self.mainmenu)
100
2f90df85 101 # set the menu accellerator table...
f0261a72 102 aTable = wxAcceleratorTable([(wxACCEL_ALT, ord('X'), exitID),
2f90df85
RD
103 (wxACCEL_CTRL, ord('H'), helpID)])
104 self.SetAcceleratorTable(aTable)
105
bb0054cd 106
cf694132 107 # Create a TreeCtrl
ec3e670f
RD
108 tID = wxNewId()
109 self.treeMap = {}
cf694132
RD
110 self.tree = wxTreeCtrl(splitter, tID)
111 root = self.tree.AddRoot("Overview")
112 for item in _treeList:
113 child = self.tree.AppendItem(root, item[0])
114 for childItem in item[1]:
bb0054cd 115 theDemo = self.tree.AppendItem(child, childItem)
ec3e670f 116 self.treeMap[childItem] = theDemo
bb0054cd 117
cf694132
RD
118 self.tree.Expand(root)
119 EVT_TREE_ITEM_EXPANDED (self.tree, tID, self.OnItemExpanded)
120 EVT_TREE_ITEM_COLLAPSED (self.tree, tID, self.OnItemCollapsed)
121 EVT_TREE_SEL_CHANGED (self.tree, tID, self.OnSelChanged)
122
cf694132
RD
123 # Create a Notebook
124 self.nb = wxNotebook(splitter2, -1)
125
126 # Set up a TextCtrl on the Overview Notebook page
efc5f224 127 self.ovr = wxTextCtrl(self.nb, -1, style = wxTE_MULTILINE|wxTE_READONLY)
cf694132
RD
128 self.nb.AddPage(self.ovr, "Overview")
129
130
131 # Set up a TextCtrl on the Demo Code Notebook page
efc5f224
RD
132 self.txt = wxTextCtrl(self.nb, -1,
133 style = wxTE_MULTILINE|wxTE_READONLY|wxHSCROLL)
bb0054cd 134 self.txt.SetFont(wxFont(9, wxMODERN, wxNORMAL, wxNORMAL, false))
cf694132
RD
135 self.nb.AddPage(self.txt, "Demo Code")
136
137
cf694132 138 # Set up a log on the View Log Notebook page
efc5f224
RD
139 self.log = wxTextCtrl(splitter2, -1,
140 style = wxTE_MULTILINE|wxTE_READONLY|wxHSCROLL)
cf694132 141 (w, self.charHeight) = self.log.GetTextExtent('X')
e166644c 142 self.WriteText('wxPython Demo Log:\n')
cf694132
RD
143
144
145 # add the windows to the splitter and split it.
146 splitter.SplitVertically(self.tree, splitter2)
147 splitter.SetSashPosition(180, true)
148 splitter.SetMinimumPaneSize(20)
149
150 splitter2.SplitHorizontally(self.nb, self.log)
151 splitter2.SetSashPosition(360, true)
152 splitter2.SetMinimumPaneSize(20)
153
154 # make our log window be stdout
c127177f 155 #sys.stdout = self
cf694132 156
bb0054cd
RD
157 # select initial items
158 self.nb.SetSelection(0)
159 self.tree.SelectItem(root)
ec3e670f
RD
160
161 if len(sys.argv) == 2:
162 try:
163 selectedDemo = self.treeMap[sys.argv[1]]
164 except:
165 selectedDemo = None
166 if selectedDemo:
167 self.tree.SelectItem(selectedDemo)
168 self.tree.EnsureVisible(selectedDemo)
169
bb0054cd 170
cf694132
RD
171 #---------------------------------------------
172 def WriteText(self, text):
173 self.log.WriteText(text)
53920141
RD
174 w, h = self.log.GetClientSizeTuple()
175 numLines = h/self.charHeight
176 x, y = self.log.PositionToXY(self.log.GetLastPosition())
e166644c
RD
177 if y > numLines:
178 self.log.ShowPosition(self.log.XYToPosition(x, y-numLines))
179 ##self.log.ShowPosition(self.log.GetLastPosition())
64be6958 180 self.log.SetInsertionPointEnd()
cf694132
RD
181
182 def write(self, txt):
183 self.WriteText(txt)
184
185 #---------------------------------------------
186 def OnItemExpanded(self, event):
187 item = event.GetItem()
188 self.log.WriteText("OnItemExpanded: %s\n" % self.tree.GetItemText(item))
189
190 #---------------------------------------------
191 def OnItemCollapsed(self, event):
192 item = event.GetItem()
193 self.log.WriteText("OnItemCollapsed: %s\n" % self.tree.GetItemText(item))
194
195 #---------------------------------------------
196 def OnSelChanged(self, event):
197 if self.dying:
198 return
199
200 if self.nb.GetPageCount() == 3:
201 if self.nb.GetSelection() == 2:
202 self.nb.SetSelection(0)
203 self.nb.DeletePage(2)
204
205 item = event.GetItem()
206 itemText = self.tree.GetItemText(item)
207
208 if itemText == 'Overview':
209 self.GetDemoFile('Main.py')
210 self.SetOverview('Overview', overview)
cf694132 211 self.nb.Refresh();
e91a9dfc 212 self.window = None
cf694132
RD
213
214 else:
215 if os.path.exists(itemText + '.py'):
216 self.GetDemoFile(itemText + '.py')
217 module = __import__(itemText, globals())
218 self.SetOverview(itemText, module.overview)
219
220 # in case runTest is modal, make sure things look right...
221 self.nb.Refresh();
222 wxYield()
223
e91a9dfc
RD
224 self.window = module.runTest(self, self.nb, self)
225 if self.window:
226 self.nb.AddPage(self.window, 'Demo')
f0261a72 227 self.nb.ResizeChildren()
cf694132 228 self.nb.SetSelection(2)
cf694132
RD
229
230 else:
231 self.ovr.Clear()
232 self.txt.Clear()
e91a9dfc 233 self.window = None
cf694132 234
2f90df85 235
cf694132
RD
236
237 #---------------------------------------------
238 # Get the Demo files
239 def GetDemoFile(self, filename):
240 self.txt.Clear()
bb0054cd
RD
241 #if not self.txt.LoadFile(filename):
242 # self.txt.WriteText("Cannot open %s file." % filename)
243 try:
244 self.txt.SetValue(open(filename).read())
8bf5d46e 245 except IOError:
cf694132
RD
246 self.txt.WriteText("Cannot open %s file." % filename)
247
bb0054cd 248
cf694132
RD
249 self.txt.SetInsertionPoint(0)
250 self.txt.ShowPosition(0)
251
252 #---------------------------------------------
253 def SetOverview(self, name, text):
254 self.ovr.Clear()
255 self.ovr.WriteText(text)
256 self.nb.SetPageText(0, name)
257 self.ovr.SetInsertionPoint(0)
258 self.ovr.ShowPosition(0)
259
260 #---------------------------------------------
261 # Menu methods
262 def OnFileExit(self, event):
263 self.Close()
264
265
266 def OnHelpAbout(self, event):
ec3e670f
RD
267 #about = wxMessageDialog(self,
268 # "wxPython is a Python extension module that\n"
269 # "encapsulates the wxWindows GUI classes.\n\n"
270 # "This demo shows off some of the capabilities\n"
271 # "of wxPython.\n\n"
272 # " Developed by Robin Dunn",
273 # "About wxPython", wxOK)
e166644c 274 from About import MyAboutBox
ec3e670f 275 about = MyAboutBox(self)
cf694132
RD
276 about.ShowModal()
277 about.Destroy()
278
279
280 #---------------------------------------------
281 def OnCloseWindow(self, event):
282 self.dying = true
e91a9dfc 283 self.window = None
26197023 284 self.mainmenu = None
cf694132
RD
285 self.Destroy()
286
287 #---------------------------------------------
288 def OnIdle(self, event):
289 if self.otherWin:
290 self.otherWin.Raise()
e91a9dfc 291 self.window = self.otherWin
cf694132
RD
292 self.otherWin = None
293
ec3e670f
RD
294 #---------------------------------------------
295 def OnDemoMenu(self, event):
ec3e670f
RD
296 try:
297 selectedDemo = self.treeMap[self.mainmenu.GetLabel(event.GetId())]
298 except:
299 selectedDemo = None
300 if selectedDemo:
301 self.tree.SelectItem(selectedDemo)
302 self.tree.EnsureVisible(selectedDemo)
ec3e670f
RD
303
304
cf694132
RD
305#---------------------------------------------------------------------------
306#---------------------------------------------------------------------------
307
308class MyApp(wxApp):
309 def OnInit(self):
310 wxImage_AddHandler(wxJPEGHandler())
311 wxImage_AddHandler(wxPNGHandler())
312 wxImage_AddHandler(wxGIFHandler())
313 frame = wxPythonDemo(NULL, -1, "wxPython: (A Demonstration)")
314 frame.Show(true)
315 self.SetTopWindow(frame)
316 return true
317
318#---------------------------------------------------------------------------
319
320def main():
321 app = MyApp(0)
322 app.MainLoop()
323
324
325#---------------------------------------------------------------------------
326
327
328
329overview = """\
330Python
331------------
332
333Python is an interpreted, interactive, object-oriented programming language often compared to Tcl, Perl, Scheme, or Java.
334
335Python 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.
336
337wxWindows
338--------------------
339
340wxWindows 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.
341
342wxWindows 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.
343
344wxPython
345----------------
346
347wxPython 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.
348
349The 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.
350
351There 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.
352
353wxPython 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.
354"""
355
356
357
358
359
360
361
362#----------------------------------------------------------------------------
363#----------------------------------------------------------------------------
364
365if __name__ == '__main__':
366 main()
367
368#----------------------------------------------------------------------------
369
370
371
372
373
374
375