2 #----------------------------------------------------------------------------
4 # Purpose: Testing lots of stuff, controls, window types, etc.
8 # Created: A long time ago, in a galaxy far, far away...
10 # Copyright: (c) 1999 by Total Control Software
11 # Licence: wxWindows license
12 #----------------------------------------------------------------------------
16 import wx
# This module uses the new wx namespace
24 ##raw_input("Press a key...")
27 #---------------------------------------------------------------------------
32 ('Recent Additions', [
37 'XmlResourceSubclass',
43 # managed windows == things with a (optional) caption you can close
44 ('Base Frames and Dialogs', [
68 # dialogs from libraries
72 'MultipleChoiceDialog',
73 'ScrolledMessageDialog',
77 ('Core Windows/Controls', [
112 ('Custom Controls', [
125 # controls coming from other libraries
126 ('More Windows/Controls', [
127 #'RightTextCtrl', deprecated as we have wxTE_RIGHT now.
141 'MaskedEditControls',
157 # How to lay out the controls in a frame/dialog
167 'XmlResourceHandler',
168 'XmlResourceSubclass',
172 ('Process and Events', [
184 ('Clipboard and DnD', [
217 # need libs not coming with the demo
218 ('Objects using an external library', [
219 'ActiveXWrapper_Acrobat',
222 #'PlotCanvas', # deprecated, use PyPlot
226 ('Check out the samples dir too', [
233 #---------------------------------------------------------------------------
234 # Show how to derive a custom wxLog class
236 class MyLog(wx
.PyLog
):
237 def __init__(self
, textCtrl
, logTime
=0):
238 wx
.PyLog
.__init
__(self
)
240 self
.logTime
= logTime
242 def DoLogString(self
, message
, timeStamp
):
244 message
= time
.strftime("%X", time
.localtime(timeStamp
)) + \
247 self
.tc
.AppendText(message
+ '\n')
250 class MyTP(wx
.PyTipProvider
):
252 return "This is my tip"
254 #---------------------------------------------------------------------------
255 # A class to be used to display source code in the demo. Try using the
256 # wxSTC in the StyledTextCtrl_2 sample first, fall back to wxTextCtrl
257 # if there is an error, such as the stc module not being present.
263 from StyledTextCtrl_2
import PythonSTC
264 class DemoCodeViewer(PythonSTC
):
265 def __init__(self
, parent
, ID
):
266 PythonSTC
.__init
__(self
, parent
, ID
, wx
.BORDER_NONE
)
269 # Some methods to make it compatible with how the wxTextCtrl is used
270 def SetValue(self
, value
):
271 self
.SetReadOnly(False)
273 self
.SetReadOnly(True)
278 def SetInsertionPoint(self
, pos
):
279 self
.SetCurrentPos(pos
)
281 def ShowPosition(self
, pos
):
284 def GetLastPosition(self
):
285 return self
.GetLength()
287 def GetRange(self
, start
, end
):
288 return self
.GetTextRange(start
, end
)
290 def GetSelection(self
):
291 return self
.GetAnchor(), self
.GetCurrentPos()
293 def SetSelection(self
, start
, end
):
294 self
.SetSelectionStart(start
)
295 self
.SetSelectionEnd(end
)
297 def SetUpEditor(self
):
299 This method carries out the work of setting up the demo editor.
300 It's seperate so as not to clutter up the init code.
304 self
.SetLexer(stc
.STC_LEX_PYTHON
)
305 self
.SetKeyWords(0, " ".join(keyword
.kwlist
))
308 self
.SetProperty("fold", "1" )
310 # Highlight tab/space mixing (shouldn't be any)
311 self
.SetProperty("tab.timmy.whinge.level", "1")
313 # Set left and right margins
316 # Set up the numbers in the margin for margin #1
317 self
.SetMarginType(1, wx
.stc
.STC_MARGIN_NUMBER
)
318 # Reasonable value for, say, 4-5 digits using a mono font (40 pix)
319 self
.SetMarginWidth(1, 40)
321 # Indentation and tab stuff
322 self
.SetIndent(4) # Proscribed indent size for wx
323 self
.SetIndentationGuides(True) # Show indent guides
324 self
.SetBackSpaceUnIndents(True)# Backspace unindents rather than delete 1 space
325 self
.SetTabIndents(True) # Tab key indents
326 self
.SetTabWidth(4) # Proscribed tab size for wx
327 self
.SetUseTabs(False) # Use spaces rather than tabs, or
328 # TabTimmy will complain!
330 self
.SetViewWhiteSpace(False) # Don't view white space
333 #self.SetEOLMode(wx.stc.STC_EOL_CRLF) # Just leave it at the default (autosense)
334 self
.SetViewEOL(False)
335 # No right-edge mode indicator
336 self
.SetEdgeMode(stc
.STC_EDGE_NONE
)
338 # Setup a margin to hold fold markers
339 self
.SetMarginType(2, stc
.STC_MARGIN_SYMBOL
)
340 self
.SetMarginMask(2, stc
.STC_MASK_FOLDERS
)
341 self
.SetMarginSensitive(2, True)
342 self
.SetMarginWidth(2, 12)
344 # and now set up the fold markers
345 self
.MarkerDefine(stc
.STC_MARKNUM_FOLDEREND
, stc
.STC_MARK_BOXPLUSCONNECTED
, "white", "black")
346 self
.MarkerDefine(stc
.STC_MARKNUM_FOLDEROPENMID
, stc
.STC_MARK_BOXMINUSCONNECTED
, "white", "black")
347 self
.MarkerDefine(stc
.STC_MARKNUM_FOLDERMIDTAIL
, stc
.STC_MARK_TCORNER
, "white", "black")
348 self
.MarkerDefine(stc
.STC_MARKNUM_FOLDERTAIL
, stc
.STC_MARK_LCORNER
, "white", "black")
349 self
.MarkerDefine(stc
.STC_MARKNUM_FOLDERSUB
, stc
.STC_MARK_VLINE
, "white", "black")
350 self
.MarkerDefine(stc
.STC_MARKNUM_FOLDER
, stc
.STC_MARK_BOXPLUS
, "white", "black")
351 self
.MarkerDefine(stc
.STC_MARKNUM_FOLDEROPEN
, stc
.STC_MARK_BOXMINUS
, "white", "black")
353 # Global default style
354 if wx
.Platform
== '__WXMSW__':
355 self
.StyleSetSpec(stc
.STC_STYLE_DEFAULT
,
356 'fore:#000000,back:#FFFFFF,face:Courier New,size:9')
358 self
.StyleSetSpec(stc
.STC_STYLE_DEFAULT
,
359 'fore:#000000,back:#FFFFFF,face:Courier,size:12')
361 # Clear styles and revert to default.
364 # Following style specs only indicate differences from default.
365 # The rest remains unchanged.
367 # Line numbers in margin
368 self
.StyleSetSpec(wx
.stc
.STC_STYLE_LINENUMBER
,'fore:#000000,back:#99A9C2')
371 self
.StyleSetSpec(wx
.stc
.STC_STYLE_BRACELIGHT
,'fore:#00009D,back:#FFFF00')
373 self
.StyleSetSpec(wx
.stc
.STC_STYLE_BRACEBAD
,'fore:#00009D,back:#FF0000')
375 self
.StyleSetSpec(wx
.stc
.STC_STYLE_INDENTGUIDE
, "fore:#CDCDCD")
378 self
.StyleSetSpec(wx
.stc
.STC_P_DEFAULT
, 'fore:#000000')
380 self
.StyleSetSpec(wx
.stc
.STC_P_COMMENTLINE
, 'fore:#008000,back:#F0FFF0')
381 self
.StyleSetSpec(wx
.stc
.STC_P_COMMENTBLOCK
, 'fore:#008000,back:#F0FFF0')
383 self
.StyleSetSpec(wx
.stc
.STC_P_NUMBER
, 'fore:#008080')
384 # Strings and characters
385 self
.StyleSetSpec(wx
.stc
.STC_P_STRING
, 'fore:#800080')
386 self
.StyleSetSpec(wx
.stc
.STC_P_CHARACTER
, 'fore:#800080')
388 self
.StyleSetSpec(wx
.stc
.STC_P_WORD
, 'fore:#000080,bold')
390 self
.StyleSetSpec(wx
.stc
.STC_P_TRIPLE
, 'fore:#800080,back:#FFFFEA')
391 self
.StyleSetSpec(wx
.stc
.STC_P_TRIPLEDOUBLE
, 'fore:#800080,back:#FFFFEA')
393 self
.StyleSetSpec(wx
.stc
.STC_P_CLASSNAME
, 'fore:#0000FF,bold')
395 self
.StyleSetSpec(wx
.stc
.STC_P_DEFNAME
, 'fore:#008080,bold')
397 self
.StyleSetSpec(wx
.stc
.STC_P_OPERATOR
, 'fore:#800000,bold')
398 # Identifiers. I leave this as not bold because everything seems
399 # to be an identifier if it doesn't match the above criterae
400 self
.StyleSetSpec(wx
.stc
.STC_P_IDENTIFIER
, 'fore:#000000')
403 self
.SetCaretForeground("BLUE")
404 # Selection background
405 self
.SetSelBackground(1, '#66CCFF')
407 self
.SetSelBackground(True, wx
.SystemSettings_GetColour(wx
.SYS_COLOUR_HIGHLIGHT
))
408 self
.SetSelForeground(True, wx
.SystemSettings_GetColour(wx
.SYS_COLOUR_HIGHLIGHTTEXT
))
412 class DemoCodeViewer(wx
.TextCtrl
):
413 def __init__(self
, parent
, ID
):
414 wx
.TextCtrl
.__init
__(self
, parent
, ID
, style
=
415 wx
.TE_MULTILINE | wx
.TE_READONLY |
416 wx
.HSCROLL | wx
.TE_RICH2 | wx
.TE_NOHIDESEL
)
419 #---------------------------------------------------------------------------
422 """Convert paths to the platform-specific separator"""
423 return apply(os
.path
.join
, tuple(path
.split('/')))
426 #---------------------------------------------------------------------------
428 class wxPythonDemo(wx
.Frame
):
429 overviewText
= "wxPython Overview"
431 def __init__(self
, parent
, id, title
):
432 wx
.Frame
.__init
__(self
, parent
, -1, title
, size
= (800, 600),
433 style
=wx
.DEFAULT_FRAME_STYLE|wx
.NO_FULL_REPAINT_ON_RESIZE
)
436 self
.cwd
= os
.getcwd()
437 self
.curOverview
= ""
440 icon
= images
.getMondrianIcon()
443 if wx
.Platform
!= '__WXMAC__':
444 # setup a taskbar icon, and catch some events from it
445 icon
= wx
.IconFromBitmap(
446 images
.getMondrianImage().Scale(16,16).ConvertToBitmap() )
447 self
.tbicon
= wx
.TaskBarIcon()
448 self
.tbicon
.SetIcon(icon
, "wxPython Demo")
449 self
.tbicon
.Bind(wx
.EVT_TASKBAR_LEFT_DCLICK
, self
.OnTaskBarActivate
)
450 self
.tbicon
.Bind(wx
.EVT_TASKBAR_RIGHT_UP
, self
.OnTaskBarMenu
)
451 self
.tbicon
.Bind(wx
.EVT_MENU
, self
.OnTaskBarActivate
, id=self
.TBMENU_RESTORE
)
452 self
.tbicon
.Bind(wx
.EVT_MENU
, self
.OnTaskBarClose
, id=self
.TBMENU_CLOSE
)
454 wx
.CallAfter(self
.ShowTip
)
457 self
.Bind(wx
.EVT_IDLE
, self
.OnIdle
)
458 self
.Bind(wx
.EVT_CLOSE
, self
.OnCloseWindow
)
459 self
.Bind(wx
.EVT_ICONIZE
, self
.OnIconfiy
)
460 self
.Bind(wx
.EVT_MAXIMIZE
, self
.OnMaximize
)
463 self
.CreateStatusBar(1, wx
.ST_SIZEGRIP
)
465 splitter
= wx
.SplitterWindow(self
, -1)
466 splitter2
= wx
.SplitterWindow(splitter
, -1) ##, size=(20,20))
468 # Set up a log on the View Log Notebook page
469 self
.log
= wx
.TextCtrl(splitter2
, -1,
470 style
= wx
.TE_MULTILINE|wx
.TE_READONLY|wx
.HSCROLL
)
472 # Set the wxWindows log target to be this textctrl
473 #wx.Log_SetActiveTarget(wx.LogTextCtrl(self.log))
475 # But instead of the above we want to show how to use our own wx.Log class
476 wx
.Log_SetActiveTarget(MyLog(self
.log
))
478 # for serious debugging
479 #wx.Log_SetActiveTarget(wx.LogStderr())
480 #wx.Log_SetTraceMask(wx.TraceMessages)
484 def EmptyHandler(evt
): pass
485 #splitter.Bind(wx.EVT_ERASE_BACKGROUND, EmptyHandler)
486 #splitter2.Bind(wx.EVT_ERASE_BACKGROUND, EmptyHandler)
488 # Prevent TreeCtrl from displaying all items after destruction when True
492 self
.mainmenu
= wx
.MenuBar()
494 item
= menu
.Append(-1, 'E&xit\tAlt-X', 'Get the heck outta here!')
495 self
.Bind(wx
.EVT_MENU
, self
.OnFileExit
, item
)
496 wx
.App_SetMacExitMenuItemId(item
.GetId())
497 self
.mainmenu
.Append(menu
, '&File')
501 for item
in _treeList
:
503 for childItem
in item
[1]:
504 mi
= submenu
.Append(-1, childItem
)
505 self
.Bind(wx
.EVT_MENU
, self
.OnDemoMenu
, mi
)
506 menu
.AppendMenu(wx
.NewId(), item
[0], submenu
)
507 self
.mainmenu
.Append(menu
, '&Demo')
513 findnextID
= wx
.NewId()
515 findItem
= menu
.Append(-1, '&Find\tCtrl-F', 'Find in the Demo Code')
516 findnextItem
= menu
.Append(-1, 'Find &Next\tF3', 'Find Next')
517 menu
.AppendSeparator()
518 helpItem
= menu
.Append(-1, '&About\tCtrl-H', 'wxPython RULES!!!')
519 wx
.App_SetMacAboutMenuItemId(helpItem
.GetId())
520 self
.Bind(wx
.EVT_MENU
, self
.OnHelpAbout
, helpItem
)
521 self
.Bind(wx
.EVT_MENU
, self
.OnHelpFind
, findItem
)
522 self
.Bind(wx
.EVT_MENU
, self
.OnFindNext
, findnextItem
)
523 self
.Bind(wx
.EVT_COMMAND_FIND
, self
.OnFind
)
524 self
.Bind(wx
.EVT_COMMAND_FIND_NEXT
, self
.OnFind
)
525 self
.Bind(wx
.EVT_COMMAND_FIND_CLOSE
, self
.OnFindClose
)
526 self
.mainmenu
.Append(menu
, '&Help')
527 self
.SetMenuBar(self
.mainmenu
)
529 self
.finddata
= wx
.FindReplaceData()
532 # This is another way to set Accelerators, in addition to
533 # using the '\t<key>' syntax in the menu items.
534 aTable
= wx
.AcceleratorTable([(wx
.ACCEL_ALT
, ord('X'), exitID
),
535 (wx
.ACCEL_CTRL
, ord('H'), helpID
),
536 (wx
.ACCEL_CTRL
, ord('F'), findID
),
537 (wx
.ACCEL_NORMAL
, WXK_F3
, findnextID
)
539 self
.SetAcceleratorTable(aTable
)
545 self
.tree
= wx
.TreeCtrl(splitter
, tID
, style
=
546 wx
.TR_DEFAULT_STYLE
#| wx.TR_HAS_VARIABLE_ROW_HEIGHT
549 root
= self
.tree
.AddRoot("wxPython Overview")
551 for item
in _treeList
:
552 child
= self
.tree
.AppendItem(root
, item
[0])
553 if not firstChild
: firstChild
= child
554 for childItem
in item
[1]:
555 theDemo
= self
.tree
.AppendItem(child
, childItem
)
556 self
.treeMap
[childItem
] = theDemo
558 self
.tree
.Expand(root
)
559 self
.tree
.Expand(firstChild
)
560 self
.tree
.Bind(wx
.EVT_TREE_ITEM_EXPANDED
, self
.OnItemExpanded
, id=tID
)
561 self
.tree
.Bind(wx
.EVT_TREE_ITEM_COLLAPSED
, self
.OnItemCollapsed
, id=tID
)
562 self
.tree
.Bind(wx
.EVT_TREE_SEL_CHANGED
, self
.OnSelChanged
, id=tID
)
563 self
.tree
.Bind(wx
.EVT_LEFT_DOWN
, self
.OnTreeLeftDown
)
566 self
.nb
= wx
.Notebook(splitter2
, -1, style
=wx
.CLIP_CHILDREN
)
568 # Set up a wx.html.HtmlWindow on the Overview Notebook page
569 # we put it in a panel first because there seems to be a
570 # refresh bug of some sort (wxGTK) when it is directly in
573 self
.ovr
= wx
.html
.HtmlWindow(self
.nb
, -1, size
=(400, 400))
574 self
.nb
.AddPage(self
.ovr
, self
.overviewText
)
576 else: # hopefully I can remove this hacky code soon, see SF bug #216861
577 panel
= wx
.Panel(self
.nb
, -1, style
=wx
.CLIP_CHILDREN
)
578 self
.ovr
= wx
.html
.HtmlWindow(panel
, -1, size
=(400, 400))
579 self
.nb
.AddPage(panel
, self
.overviewText
)
581 def OnOvrSize(evt
, ovr
=self
.ovr
):
582 ovr
.SetSize(evt
.GetSize())
584 panel
.Bind(wx
.EVT_SIZE
, OnOvrSize
)
585 panel
.Bind(wx
.EVT_ERASE_BACKGROUND
, EmptyHandler
)
588 self
.SetOverview(self
.overviewText
, overview
)
591 # Set up a notebook page for viewing the source code of each sample
592 self
.txt
= DemoCodeViewer(self
.nb
, -1)
593 self
.nb
.AddPage(self
.txt
, "Demo Code")
594 self
.LoadDemoSource('Main.py')
597 # add the windows to the splitter and split it.
598 splitter2
.SplitHorizontally(self
.nb
, self
.log
, -120)
599 splitter
.SplitVertically(self
.tree
, splitter2
, 180)
601 splitter
.SetMinimumPaneSize(20)
602 splitter2
.SetMinimumPaneSize(20)
605 # Make the splitter on the right expand the top window when resized
606 def SplitterOnSize(evt
):
607 splitter
= evt
.GetEventObject()
608 sz
= splitter
.GetSize()
609 splitter
.SetSashPosition(sz
.height
- 120, False)
612 splitter2
.Bind(wx
.EVT_SIZE
, SplitterOnSize
)
615 # select initial items
616 self
.nb
.SetSelection(0)
617 self
.tree
.SelectItem(root
)
619 if len(sys
.argv
) == 2:
621 selectedDemo
= self
.treeMap
[sys
.argv
[1]]
625 self
.tree
.SelectItem(selectedDemo
)
626 self
.tree
.EnsureVisible(selectedDemo
)
629 wx
.LogMessage('window handle: %s' % self
.GetHandle())
632 #---------------------------------------------
633 def WriteText(self
, text
):
634 if text
[-1:] == '\n':
639 def write(self
, txt
):
642 #---------------------------------------------
643 def OnItemExpanded(self
, event
):
644 item
= event
.GetItem()
645 wx
.LogMessage("OnItemExpanded: %s" % self
.tree
.GetItemText(item
))
648 #---------------------------------------------
649 def OnItemCollapsed(self
, event
):
650 item
= event
.GetItem()
651 wx
.LogMessage("OnItemCollapsed: %s" % self
.tree
.GetItemText(item
))
654 #---------------------------------------------
655 def OnTreeLeftDown(self
, event
):
656 pt
= event
.GetPosition();
657 item
, flags
= self
.tree
.HitTest(pt
)
658 if item
== self
.tree
.GetSelection():
659 self
.SetOverview(self
.tree
.GetItemText(item
)+" Overview", self
.curOverview
)
662 #---------------------------------------------
663 def OnSelChanged(self
, event
):
667 item
= event
.GetItem()
668 itemText
= self
.tree
.GetItemText(item
)
669 self
.RunDemo(itemText
)
672 #---------------------------------------------
673 def RunDemo(self
, itemText
):
675 if self
.nb
.GetPageCount() == 3:
676 if self
.nb
.GetSelection() == 2:
677 self
.nb
.SetSelection(0)
678 # inform the window that it's time to quit if it cares
679 if self
.window
is not None:
680 if hasattr(self
.window
, "ShutdownDemo"):
681 self
.window
.ShutdownDemo()
682 wx
.SafeYield() # in case the page has pending events
683 self
.nb
.DeletePage(2)
685 if itemText
== self
.overviewText
:
686 self
.LoadDemoSource('Main.py')
687 self
.SetOverview(self
.overviewText
, overview
)
691 if os
.path
.exists(itemText
+ '.py'):
693 wx
.LogMessage("Running demo %s.py..." % itemText
)
695 self
.LoadDemoSource(itemText
+ '.py')
697 if (sys
.modules
.has_key(itemText
)):
698 reload(sys
.modules
[itemText
])
700 module
= __import__(itemText
, globals())
701 self
.SetOverview(itemText
+ " Overview", module
.overview
)
706 self
.window
= module
.runTest(self
, self
.nb
, self
) ###
707 if self
.window
is not None:
708 self
.nb
.AddPage(self
.window
, 'Demo')
709 self
.nb
.SetSelection(2)
718 #---------------------------------------------
720 def LoadDemoSource(self
, filename
):
723 self
.txt
.SetValue(open(filename
).read())
725 self
.txt
.SetValue("Cannot open %s file." % filename
)
727 self
.txt
.SetInsertionPoint(0)
728 self
.txt
.ShowPosition(0)
730 #---------------------------------------------
731 def SetOverview(self
, name
, text
):
732 self
.curOverview
= text
734 if lead
!= '<html>' and lead
!= '<HTML>':
735 text
= '<br>'.join(text
.split('\n'))
736 self
.ovr
.SetPage(text
)
737 self
.nb
.SetPageText(0, name
)
739 #---------------------------------------------
741 def OnFileExit(self
, *event
):
744 def OnHelpAbout(self
, event
):
745 from About
import MyAboutBox
746 about
= MyAboutBox(self
)
750 def OnHelpFind(self
, event
):
751 self
.nb
.SetSelection(1)
752 self
.finddlg
= wx
.FindReplaceDialog(self
, self
.finddata
, "Find",
756 self
.finddlg
.Show(True)
758 def OnFind(self
, event
):
759 self
.nb
.SetSelection(1)
760 end
= self
.txt
.GetLastPosition()
761 textstring
= self
.txt
.GetRange(0, end
).lower()
762 start
= self
.txt
.GetSelection()[1]
763 findstring
= self
.finddata
.GetFindString().lower()
764 loc
= textstring
.find(findstring
, start
)
765 if loc
== -1 and start
!= 0:
766 # string not found, start at beginning
768 loc
= textstring
.find(findstring
, start
)
770 dlg
= wx
.MessageDialog(self
, 'Find String Not Found',
771 'Find String Not Found in Demo File',
772 wx
.OK | wx
.ICON_INFORMATION
)
777 self
.finddlg
.SetFocus()
780 self
.finddlg
.Destroy()
781 self
.txt
.ShowPosition(loc
)
782 self
.txt
.SetSelection(loc
, loc
+ len(findstring
))
786 def OnFindNext(self
, event
):
787 if self
.finddata
.GetFindString():
790 self
.OnHelpFind(event
)
792 def OnFindClose(self
, event
):
793 event
.GetDialog().Destroy()
796 #---------------------------------------------
797 def OnCloseWindow(self
, event
):
801 if hasattr(self
, "tbicon"):
806 #---------------------------------------------
807 def OnIdle(self
, event
):
809 self
.otherWin
.Raise()
810 self
.window
= self
.otherWin
814 #---------------------------------------------
817 showTipText
= open(opj("data/showTips")).read()
818 showTip
, index
= eval(showTipText
)
820 showTip
, index
= (1, 0)
822 tp
= wx
.CreateFileTipProvider(opj("data/tips.txt"), index
)
824 showTip
= wx
.ShowTip(self
, tp
)
825 index
= tp
.GetCurrentTip()
826 open(opj("data/showTips"), "w").write(str( (showTip
, index
) ))
829 #---------------------------------------------
830 def OnDemoMenu(self
, event
):
832 selectedDemo
= self
.treeMap
[self
.mainmenu
.GetLabel(event
.GetId())]
836 self
.tree
.SelectItem(selectedDemo
)
837 self
.tree
.EnsureVisible(selectedDemo
)
840 #---------------------------------------------
841 def OnTaskBarActivate(self
, evt
):
842 if self
.IsIconized():
844 if not self
.IsShown():
848 #---------------------------------------------
850 TBMENU_RESTORE
= 1000
853 def OnTaskBarMenu(self
, evt
):
855 menu
.Append(self
.TBMENU_RESTORE
, "Restore wxPython Demo")
856 menu
.Append(self
.TBMENU_CLOSE
, "Close")
857 self
.tbicon
.PopupMenu(menu
)
860 #---------------------------------------------
861 def OnTaskBarClose(self
, evt
):
864 # because of the way wx.TaskBarIcon.PopupMenu is implemented we have to
865 # prod the main idle handler a bit to get the window to actually close
866 wx
.GetApp().ProcessIdle()
869 #---------------------------------------------
870 def OnIconfiy(self
, evt
):
871 wx
.LogMessage("OnIconfiy")
874 #---------------------------------------------
875 def OnMaximize(self
, evt
):
876 wx
.LogMessage("OnMaximize")
882 #---------------------------------------------------------------------------
883 #---------------------------------------------------------------------------
885 class MySplashScreen(wx
.SplashScreen
):
887 bmp
= wx
.Image(opj("bitmaps/splash.gif")).ConvertToBitmap()
888 wx
.SplashScreen
.__init
__(self
, bmp
,
889 wx
.SPLASH_CENTRE_ON_SCREEN | wx
.SPLASH_TIMEOUT
,
891 self
.Bind(wx
.EVT_CLOSE
, self
.OnClose
)
893 def OnClose(self
, evt
):
895 frame
= wxPythonDemo(None, -1, "wxPython: (A Demonstration)")
897 evt
.Skip() # Make sure the default handler runs too...
903 Create and show the splash screen. It will then create and show
904 the main frame when it is time to do so.
907 wx
.InitAllImageHandlers()
909 # Normally when using a SplashScreen you would create it, show
910 # it and then continue on with the applicaiton's
911 # initialization, finally creating and showing the main
912 # application window(s). In this case we have nothing else to
913 # do so we'll delay showing the main frame until later (see
914 # OnClose above) so the users can see the SplashScrren effect.
915 splash
= MySplashScreen()
922 #---------------------------------------------------------------------------
926 demoPath
= os
.path
.dirname(__file__
)
930 app
= MyApp(0) ##wx.Platform == "__WXMAC__")
934 #---------------------------------------------------------------------------
938 overview
= """<html><body>
941 <p> wxPython is a <b>GUI toolkit</b> for the <a
942 href="http://www.python.org/">Python</a> programming language. It
943 allows Python programmers to create programs with a robust, highly
944 functional graphical user interface, simply and easily. It is
945 implemented as a Python extension module (native code) that wraps the
946 popular <a href="http://wxwindows.org/front.htm">wxWindows</a> cross
947 platform GUI library, which is written in C++.
949 <p> Like Python and wxWindows, wxPython is <b>Open Source</b> which
950 means that it is free for anyone to use and the source code is
951 available for anyone to look at and modify. Or anyone can contribute
952 fixes or enhancements to the project.
954 <p> wxPython is a <b>cross-platform</b> toolkit. This means that the
955 same program will run on multiple platforms without modification.
956 Currently supported platforms are 32-bit Microsoft Windows, most Unix
957 or unix-like systems, and Macintosh OS X. Since the language is
958 Python, wxPython programs are <b>simple, easy</b> to write and easy to
961 <p> <b>This demo</b> is not only a collection of test cases for
962 wxPython, but is also designed to help you learn about and how to use
963 wxPython. Each sample is listed in the tree control on the left.
964 When a sample is selected in the tree then a module is loaded and run
965 (usually in a tab of this notebook,) and the source code of the module
966 is loaded in another tab for you to browse and learn from.
971 #----------------------------------------------------------------------------
972 #----------------------------------------------------------------------------
974 if __name__
== '__main__':
977 #----------------------------------------------------------------------------