Various testing changes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@22416 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -18,6 +18,7 @@ on the command line.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import wx # This module uses the new wx namespace
|
import wx # This module uses the new wx namespace
|
||||||
|
print "wx.VERSION_STRING = ", wx.VERSION_STRING
|
||||||
|
|
||||||
import sys, os
|
import sys, os
|
||||||
|
|
||||||
|
@@ -33,7 +33,6 @@ class MyFrame(wx.Frame):
|
|||||||
sizer.Add(text, 0, wx.ALL, 10)
|
sizer.Add(text, 0, wx.ALL, 10)
|
||||||
sizer.Add(btn, 0, wx.ALL, 10)
|
sizer.Add(btn, 0, wx.ALL, 10)
|
||||||
panel.SetSizer(sizer)
|
panel.SetSizer(sizer)
|
||||||
panel.SetAutoLayout(True)
|
|
||||||
panel.Layout()
|
panel.Layout()
|
||||||
|
|
||||||
wx.EVT_BUTTON(self, btn.GetId(), self.OnButton)
|
wx.EVT_BUTTON(self, btn.GetId(), self.OnButton)
|
||||||
@@ -47,6 +46,6 @@ class MyFrame(wx.Frame):
|
|||||||
|
|
||||||
app = wx.PySimpleApp()
|
app = wx.PySimpleApp()
|
||||||
frame = MyFrame(None, "Simple wxPython App")
|
frame = MyFrame(None, "Simple wxPython App")
|
||||||
frame.Show(True)
|
frame.Show()
|
||||||
app.MainLoop()
|
app.MainLoop()
|
||||||
|
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
#-------------------------------------------------------------------
|
#-------------------------------------------------------------------
|
||||||
|
|
||||||
from wxPython.wx import *
|
from wxPython.wx import *
|
||||||
|
import images
|
||||||
import time
|
import time
|
||||||
|
|
||||||
#-------------------------------------------------------------------
|
#-------------------------------------------------------------------
|
||||||
@@ -69,6 +69,11 @@ check the source for this sample to see how to implement them.
|
|||||||
menuBar.Append(menu4, "Chec&k")
|
menuBar.Append(menu4, "Chec&k")
|
||||||
|
|
||||||
menu5 = wxMenu()
|
menu5 = wxMenu()
|
||||||
|
# Show how to put an icon in the menu
|
||||||
|
item = wxMenuItem(menu5, 500, "&Smile!\tCtrl+S", "This one has an icon")
|
||||||
|
item.SetBitmap(images.getSmilesBitmap())
|
||||||
|
menu5.AppendItem(item)
|
||||||
|
|
||||||
menu5.Append(501, "Interesting thing\tCtrl+A", "Note the shortcut!")
|
menu5.Append(501, "Interesting thing\tCtrl+A", "Note the shortcut!")
|
||||||
menu5.AppendSeparator()
|
menu5.AppendSeparator()
|
||||||
menu5.Append(502, "Hello\tShift+H")
|
menu5.Append(502, "Hello\tShift+H")
|
||||||
@@ -107,6 +112,7 @@ check the source for this sample to see how to implement them.
|
|||||||
|
|
||||||
EVT_MENU_RANGE(self, 401, 403, self.Menu401To403)
|
EVT_MENU_RANGE(self, 401, 403, self.Menu401To403)
|
||||||
|
|
||||||
|
EVT_MENU(self, 500, self.Menu500)
|
||||||
EVT_MENU(self, 501, self.Menu501)
|
EVT_MENU(self, 501, self.Menu501)
|
||||||
EVT_MENU(self, 502, self.Menu502)
|
EVT_MENU(self, 502, self.Menu502)
|
||||||
EVT_MENU(self, 503, self.TestRemove)
|
EVT_MENU(self, 503, self.TestRemove)
|
||||||
@@ -168,6 +174,9 @@ check the source for this sample to see how to implement them.
|
|||||||
def Menu401To403(self, event):
|
def Menu401To403(self, event):
|
||||||
self.log.write('From a EVT_MENU_RANGE event\n')
|
self.log.write('From a EVT_MENU_RANGE event\n')
|
||||||
|
|
||||||
|
def Menu500(self, event):
|
||||||
|
self.log.write('Have a happy day!\n')
|
||||||
|
|
||||||
def Menu501(self, event):
|
def Menu501(self, event):
|
||||||
self.log.write('Look in the code how the shortcut has been realized\n')
|
self.log.write('Look in the code how the shortcut has been realized\n')
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user