Esempio n. 1
0
def test_grid_layout():
    a = App(layout="grid")

    w = TitleBox(a, "title", grid=[1, 2])
    grid_layout_test(w, 1, 2, 1, 1, None)

    ws = TitleBox(a, "title", grid=[1, 2, 3, 4])
    grid_layout_test(ws, 1, 2, 3, 4, None)

    wa = TitleBox(a, "title", grid=[1, 2], align="top")
    grid_layout_test(wa, 1, 2, 1, 1, "top")

    a.destroy()
Esempio n. 2
0
def test_border():
    a = App()
    b = TitleBox(a, "title")
    assert b.border == 2

    b.border = True
    assert b.border == 1

    b.border = False
    assert b.border == 0

    b.border = 10
    assert b.border == 10

    a.destroy()
Esempio n. 3
0
def test_enable():
    a = App()
    b = TitleBox(a, "title")
    t = Text(b)
    cascading_enable_test(a)
    cascading_enable_test(b)
    a.destroy()
Esempio n. 4
0
def test_default_values():
    a = App()
    b = TitleBox(a, "title")
    assert b.text == "title"
    assert b.master == a
    assert b.layout == "auto"
    assert b.grid == None
    assert b.align == None
    assert b.border == 2
    a.destroy()
Esempio n. 5
0
def test_alt_values():
    a = App(layout="grid")
    b = TitleBox(a,
                 "title",
                 layout="grid",
                 grid=[0, 1],
                 align="top",
                 width=10,
                 height=11,
                 border=0)
    assert b.layout == "grid"
    assert b.grid[0] == 0
    assert b.grid[1] == 1
    assert b.align == "top"
    assert b.width == 10
    assert b.height == 11
    assert b.border == 0
    a.destroy()
Esempio n. 6
0
from guizero import App, Text, TitleBox
app = App()

titlebox = TitleBox(app, "Title of the box")

# change properties
# titlebox.text_size = 15
# titlebox.font = "courier new"
# titlebox.text_color = "red"

message = Text(titlebox, "Text inside a TitleBox")

app.display()
Esempio n. 7
0
def test_size():
    a = App()
    b = TitleBox(a, "title")
    size_pixel_test(b)
    size_fill_test(b)
    a.destroy()
Esempio n. 8
0
def test_color():
    a = App()
    b = TitleBox(a, "title")
    color_test(b)
    a.destroy()
Esempio n. 9
0
def test_display():
    a = App()
    b = TitleBox(a, "title")
    display_test(b)
    a.destroy()
Esempio n. 10
0
def test_repeat_schedule():
    a = App()
    b = TitleBox(a, "title")
    schedule_repeat_test(a, b)
    a.destroy()
Esempio n. 11
0
def test_after_schedule():
    a = App()
    b = TitleBox(a, "title")
    schedule_after_test(a, b)
    a.destroy()
Esempio n. 12
0
def test_auto_layout():
    a = App()
    w = TitleBox(a, "title")
    auto_layout_test(w, None)
    a.destroy()
Esempio n. 13
0
def test_inheriting_properties():
    a = App()
    b = TitleBox(a, "title")
    inheriting_properties_test(b)
    a.destroy()
Esempio n. 14
0
def test_cascading_properties():
    a = App()
    b = TitleBox(a, "title")
    cascading_properties_test(b)
    a.destroy()
Esempio n. 15
0
def test_events():
    a = App()
    b = TitleBox(a, "title")
    events_test(b)
    a.destroy()