def test_events(): a = App() b = Box(a) events_test(b) a.destroy()
def test_events(): a = App() c = CheckBox(a, "foo") events_test(c) a.destroy()
def test_events(): a = App() b = ButtonGroup(a, ["foo", "bar"]) events_test(b) a.destroy()
def test_events(): a = App() w = Waffle(a) events_test(w) a.destroy()
def test_events(): a = App() p = PushButton(a) events_test(p) a.destroy()
def test_events(): a = App() t = TextBox(a) events_test(t) a.destroy()
def test_events(): a = App() c = Combo(a, ["foo", "bar"]) events_test(c) a.destroy()
def test_events(): a = App() events_test(a) a.destroy()
def test_events(): a = App() w = Window(a) events_test(w) a.destroy()
def test_events(): a = App() s = Slider(a) events_test(s) a.destroy()
def test_events(): a = App() l = ListBox(a, ["foo", "bar"]) events_test(l) a.destroy()
def test_events(): a = App() b = TitleBox(a, "title") events_test(b) a.destroy()
def test_events(): a = App() p = Picture(a) events_test(p) a.destroy()