Exemplo n.º 1
0
def vp_start_gui():
    '''Starting point when module is the main routine.'''
    global val, w, root
    root = Tk()
    top = New_Toplevel_1 (root)
    questions_support.init(root, top)
    root.mainloop()
Exemplo n.º 2
0
def create_New_Toplevel_1(root, *args, **kwargs):
    '''Starting point when module is imported by another program.'''
    global w, w_win, rt
    rt = root
    w = Toplevel (root)
    top = New_Toplevel_1 (w)
    questions_support.init(w, top, *args, **kwargs)
    return (w, top)