'wxArtProvider',
'ScrolledPanel',
'wxMenu',
+ 'wxIEHtmlWin',
]),
# managed windows == things with a caption you can close
'wxEditor',
'wxFloatBar',
'wxHtmlWindow',
+ 'wxIEHtmlWin',
'wxLEDNumberCtrl',
'wxMimeTypesManager',
'wxMVCTree',
+ 'wxRightTextCtrl',
'wxStyledTextCtrl_1',
'wxStyledTextCtrl_2',
- 'wxRightTextCtrl',
]),
# How to lay out the controls in a frame/dialog
'wxPlotCanvas',
]),
- # pyTree, hangman, ... in the samples dir
+
('Check out the samples dir too', [
]),
self.tc.AppendText(message + '\n')
+class MyTP(wxPyTipProvider):
+ def GetTip(self):
+ return "This is my tip"
+
#---------------------------------------------------------------------------
def opj(path):
showTip, index = (1, 0)
if showTip:
tp = wxCreateFileTipProvider(opj("data/tips.txt"), index)
+ ##tp = MyTP(0)
showTip = wxShowTip(self, tp)
index = tp.GetCurrentTip()
open(opj("data/showTips"), "w").write(str( (showTip, index) ))