def test_color():
    a = App()
    b = Box(a)
    color_test(b)
    a.destroy()
Esempio n. 2
0
def test_color():
    a = App()
    c = CheckBox(a, "foo")
    color_test(c)
    a.destroy()
Esempio n. 3
0
def test_color():
    a = App()
    b = ButtonGroup(a, ["foo", "bar"])
    color_test(b)
    a.destroy()
Esempio n. 4
0
def test_color():
    a = App()
    w = Waffle(a)
    color_test(w)
    a.destroy()
Esempio n. 5
0
def test_color():
    a = App()
    b = PushButton(a)
    color_test(b)
    a.destroy()
Esempio n. 6
0
def test_color():
    a = App()
    t = TextBox(a)
    color_test(t)
    a.destroy()
Esempio n. 7
0
def test_color():
    a = App()
    c = Combo(a, ["foo", "bar"])
    color_test(c)
    a.destroy()
Esempio n. 8
0
def test_color():
    a = App()
    s = Slider(a)
    color_test(s)
    a.destroy()
Esempio n. 9
0
def test_color():
    a = App()
    l = ListBox(a, ["foo", "bar"])
    color_test(l)
    a.destroy()
Esempio n. 10
0
def test_color():
    a = App()
    b = TitleBox(a, "title")
    color_test(b)
    a.destroy()
Esempio n. 11
0
def test_color():
    a = App()
    p = Picture(a)
    color_test(p)
    a.destroy()