Added some new test cases

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20322 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2003-04-23 21:26:15 +00:00
parent 5dc5e70e20
commit ffac66d530
2 changed files with 12 additions and 0 deletions

View File

@@ -75,6 +75,7 @@ check the source for this sample to see how to implement them.
menu6 = wxMenu() menu6 = wxMenu()
menu6.Append(601, "Submenu Item") menu6.Append(601, "Submenu Item")
menu5.AppendMenu(504, "submenu", menu6) menu5.AppendMenu(504, "submenu", menu6)
menu5.Append(505, "remove this menu")
menuBar.Append(menu5, "&Fun") menuBar.Append(menu5, "&Fun")
self.SetMenuBar(menuBar) self.SetMenuBar(menuBar)
@@ -102,6 +103,7 @@ check the source for this sample to see how to implement them.
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)
EVT_MENU(self, 505, self.TestRemove2)
# Methods # Methods
@@ -165,6 +167,11 @@ check the source for this sample to see how to implement them.
#menu.RemoveItem(submenuItem) # doesn't work, as expected since submenuItem is not on menu #menu.RemoveItem(submenuItem) # doesn't work, as expected since submenuItem is not on menu
def TestRemove2(self, evt):
mb = self.GetMenuBar()
mb.Remove(4)
#------------------------------------------------------------------- #-------------------------------------------------------------------
def runTest(frame, nb, log): def runTest(frame, nb, log):

View File

@@ -92,6 +92,11 @@ class MyCanvas(wxScrolledWindow):
dc.SetTextForeground(wxColour(0, 0xFF, 0x80)) dc.SetTextForeground(wxColour(0, 0xFF, 0x80))
dc.DrawText("a bitmap", 200, 85) dc.DrawText("a bitmap", 200, 85)
## dc.SetFont(wxFont(14, wxSWISS, wxNORMAL, wxNORMAL))
## dc.SetTextForeground("BLACK")
## dc.DrawText("TEST this STRING", 10, 200)
font = wxFont(20, wxSWISS, wxNORMAL, wxNORMAL) font = wxFont(20, wxSWISS, wxNORMAL, wxNORMAL)
dc.SetFont(font) dc.SetFont(font)
dc.SetTextForeground(wxBLACK) dc.SetTextForeground(wxBLACK)