def test_size():
    a = App()
    c = CheckBox(a, "foo")
    size_text_test(c)
    size_fill_test(c)
    a.destroy()
def test_size():
    a = App()
    b = Box(a)
    size_pixel_test(b)
    size_fill_test(b)
    a.destroy()
Esempio n. 3
0
def test_size():
    a = App()
    b = PushButton(a)
    size_text_test(b)
    size_fill_test(b)
    a.destroy()
Esempio n. 4
0
def test_size():
    a = App()
    t = Text(a)
    size_text_test(t)
    size_fill_test(t)
    a.destroy()
def test_size():
    a = App()
    s = Slider(a)
    size_pixel_test(s)
    size_fill_test(s)
    a.destroy()
def test_size():
    a = App()
    c = Combo(a, ["foo", "bar"])
    size_text_test(c)
    size_fill_test(c)
    a.destroy()
Esempio n. 7
0
def test_size():
    a = App()
    l = ListBox(a, ["foo", "bar"])
    size_text_test(l)
    size_fill_test(l)
    a.destroy()
def test_size():
    a = App()
    b = ButtonGroup(a, ["foo", "bar"])
    size_text_test(b)
    size_fill_test(b)
    a.destroy()
Esempio n. 9
0
def test_size():
    a = App()
    b = TitleBox(a, "title")
    size_pixel_test(b)
    size_fill_test(b)
    a.destroy()