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