]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/ContextHelp.py
2 from wxPython
. wx
import *
4 #----------------------------------------------------------------------
5 # We first have to set an application-wide help provider. Normally you
6 # would do this in your app's OnInit or in other startup code...
8 provider
= wxSimpleHelpProvider ()
9 wxHelpProvider_Set ( provider
)
12 class TestPanel ( wxPanel
):
13 def __init__ ( self
, parent
, log
):
14 wxPanel
.__ init
__ ( self
, parent
, - 1 )
17 self
. SetHelpText ( "This is a wxPanel." )
18 sizer
= wxBoxSizer ( wxVERTICAL
)
20 cBtn
= wxContextHelpButton ( self
)
21 cBtn
. SetHelpText ( "wxContextHelpButton" )
22 cBtnText
= wxStaticText ( self
, - 1 , "This is a wxContextHelpButton. Clicking it puts the \n "
23 "app into context sensitive help mode." )
24 cBtnText
. SetHelpText ( "Some helpful text..." )
26 s
= wxBoxSizer ( wxHORIZONTAL
)
27 s
. Add ( cBtn
, 0 , wxALL
, 5 )
28 s
. Add ( cBtnText
, 0 , wxALL
, 5 )
32 text
= wxTextCtrl ( self
, - 1 , "Each sub-window can have its own help message" ,
33 size
=( 240 , 60 ), style
= wxTE_MULTILINE
)
34 text
. SetHelpText ( "This is my very own help message. This is a really long long long long long long long long long long long long long long long long long long long long message!" )
38 text
= wxTextCtrl ( self
, - 1 , "You can also intercept the help event if you like. Watch the log window when you click here..." ,
39 size
=( 240 , 60 ), style
= wxTE_MULTILINE
)
40 text
. SetHelpText ( "Yet another context help message." )
43 EVT_HELP ( text
, text
. GetId (), self
. OnCtxHelp
)
45 text
= wxTextCtrl ( self
, - 1 , "This one displays the tip itself..." ,
46 size
=( 240 , 60 ), style
= wxTE_MULTILINE
)
49 EVT_HELP ( text
, text
. GetId (), self
. OnCtxHelp2
)
52 border
= wxBoxSizer ( wxVERTICAL
)
53 border
. Add ( sizer
, 0 , wxALL
, 25 )
55 self
. SetAutoLayout ( True )
60 def OnCtxHelp ( self
, evt
):
61 self
. log
. write ( "OnCtxHelp: %s " % evt
)
65 def OnCtxHelp2 ( self
, evt
):
66 self
. log
. write ( "OnCtxHelp: %s \n " % evt
)
67 tip
= wxTipWindow ( self
, "This is a wxTipWindow" )
70 #----------------------------------------------------------------------
72 def runTest ( frame
, nb
, log
):
73 win
= TestPanel ( nb
, log
)
77 #----------------------------------------------------------------------
83 This demo shows how to incorporate Context Sensitive
84 help into your application using the wxSimpleHelpProvider class.
90 #----------------------------------------------------------------------
94 if __name__
== '__main__' :
97 run
. main ([ '' , os
. path
. basename ( sys
. argv
[ 0 ])])