def test_events():
    a = App()
    b = Box(a)
    events_test(b)
    a.destroy()
Exemplo n.º 2
0
def test_events():
    a = App()
    c = CheckBox(a, "foo")
    events_test(c)
    a.destroy()
Exemplo n.º 3
0
def test_events():
    a = App()
    b = ButtonGroup(a, ["foo", "bar"])
    events_test(b)
    a.destroy()
Exemplo n.º 4
0
def test_events():
    a = App()
    w = Waffle(a)
    events_test(w)
    a.destroy()
Exemplo n.º 5
0
def test_events():
    a = App()
    p = PushButton(a)
    events_test(p)
    a.destroy()
Exemplo n.º 6
0
def test_events():
    a = App()
    t = TextBox(a)
    events_test(t)
    a.destroy()
Exemplo n.º 7
0
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()
Exemplo n.º 9
0
def test_events():
    a = App()
    w = Window(a)
    events_test(w)
    a.destroy()
Exemplo n.º 10
0
def test_events():
    a = App()
    s = Slider(a)
    events_test(s)
    a.destroy()
Exemplo n.º 11
0
def test_events():
    a = App()
    l = ListBox(a, ["foo", "bar"])
    events_test(l)
    a.destroy()
Exemplo n.º 12
0
def test_events():
    a = App()
    b = TitleBox(a, "title")
    events_test(b)
    a.destroy()
Exemplo n.º 13
0
def test_events():
    a = App()
    p = Picture(a)
    events_test(p)
    a.destroy()