Example #1
0
 def test_lib_agw_infobar2(self):
     ib = IB.InfoBar(self.frame)
     ib.AddButton(1234, "New Button")
     ib.AddButton(wx.ID_SAVE)
     ib.ShowMessage("hello world")
     self.myYield()
     ib.RemoveButton(wx.ID_SAVE)
     ib.Dismiss()
Example #2
0
 def test_lib_agw_infobar1(self):
     ib = IB.InfoBar(self.frame)
     ib.ShowMessage("hello world")
     self.myYield()
     ib.Dismiss()
Example #3
0
 def test_lib_agw_infobarCtor(self):
     ib = IB.InfoBar(self.frame)