X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f91cd3896917fc386a1f7ede095c6cdf5fcdf7e6..8bf5d46efb26ab22575ca9bc0d0ca5d32d6b77a3:/utils/wxPython/tests/spies2.py diff --git a/utils/wxPython/tests/spies2.py b/utils/wxPython/tests/spies2.py new file mode 100644 index 0000000000..1467de1c52 --- /dev/null +++ b/utils/wxPython/tests/spies2.py @@ -0,0 +1,69 @@ +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() + +