X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e234d4c9b72709629e655b2935a3bf1262eebcb1..1fded56b375bf7a4687af1cdb182899614c1b2a8:/wxPython/tests/spies2.py diff --git a/wxPython/tests/spies2.py b/wxPython/tests/spies2.py deleted file mode 100644 index 1467de1c52..0000000000 --- a/wxPython/tests/spies2.py +++ /dev/null @@ -1,69 +0,0 @@ -from wxPython.wx import * - -#--------------------------------------------------------------------------- - -class TestComboBox(wxDialog): - def __init__(self, parent): - - wxDialog.__init__(self, parent, -1, "This is a test", - wxDefaultPosition, wxSize(550, 250)) - self.s = ['aaaaaaaaaaaaaa', - 'bbbbbbb', - 'cccccccccccccccccccccccccccccccccccc', - 'ddddddddddd', - 'eeeeeeeeeee', - 'ffffffff', - 'gggggggggggggggggggggggg', - 'hhhhhhhhhhhhhhhhhh', - 'iiiiiiiiii'] - - - wxStaticText(self, -1, "This example uses the wxListBox control.", - wxPoint(45, 10)) - xwaarde = 35*12 - wxStaticText(self, -1, "Select one:", wxPoint(15, 50), wxSize(65, -1)) - - dv = self.s[4] - self.lb= wxComboBox(self, 50, dv, wxPoint(80, 50), wxSize(xwaarde, -1), - self.s, wxCB_DROPDOWN) - - wxButton(self, wxID_OK, "Okay", wxPoint(10,90)).SetDefault() - wxButton(self, wxID_CANCEL, "Cancel", wxPoint(60, 90)) - - - def GetSelection(self,leer): - - val1 = self.lb.GetStringSelection() - #leer.commit() - return val1 - - - -class MyApp(wxApp): - def OnInit(self): - - frame = wxFrame(NULL, -1, "") - wxButton(frame, 101, "test it", wxDefaultPosition, wxSize(50, 25)) - EVT_BUTTON(frame, 101, self.OnClick) - frame.Fit() - frame.Show(true) - - self.SetTopWindow(frame) - return true - - def OnClick(self, event): - - dlg = TestComboBox(NULL) - - if dlg.ShowModal() == wxID_OK: - values = dlg.GetSelection(NULL) - print "Your values are: %s" % str(values) - else: - print "You canceled!" - - dlg.Destroy() - -app = MyApp(0) -app.MainLoop() - -