-
Notifications
You must be signed in to change notification settings - Fork 0
/
Interface1.py
104 lines (83 loc) · 2.71 KB
/
Interface1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
""" Interface1.py --
UI generated by GUI Builder Build 146 on 2015-07-13 10:03:18 from:
D:/Google Drive/My Documents/Github/Python/PasswordStorage/Interface1.ui
This file is auto-generated. Only the code within
'# BEGIN USER CODE (global|class)'
'# END USER CODE (global|class)'
and code inside the callback subroutines will be round-tripped.
The 'main' function is reserved.
"""
from Tkinter import *
from Interface1_ui import Interface1
# BEGIN USER CODE global
# END USER CODE global
class CustomInterface1(Interface1):
pass
# BEGIN CALLBACK CODE
# ONLY EDIT CODE INSIDE THE def FUNCTIONS.
# _button_2_command --
#
# Callback to handle _button_2 widget option -command
def _button_2_command(self, *args):
pass
# _entry_1_invalidcommand --
#
# Callback to handle _entry_1 widget option -invalidcommand
def _entry_1_invalidcommand(self, *args):
pass
# _entry_1_validatecommand --
#
# Callback to handle _entry_1 widget option -validatecommand
def _entry_1_validatecommand(self, *args):
pass
# _entry_1_xscrollcommand --
#
# Callback to handle _entry_1 widget option -xscrollcommand
def _entry_1_xscrollcommand(self, *args):
pass
# _entry_2_invalidcommand --
#
# Callback to handle _entry_2 widget option -invalidcommand
def _entry_2_invalidcommand(self, *args):
pass
# _entry_2_validatecommand --
#
# Callback to handle _entry_2 widget option -validatecommand
def _entry_2_validatecommand(self, *args):
pass
# _entry_2_xscrollcommand --
#
# Callback to handle _entry_2 widget option -xscrollcommand
def _entry_2_xscrollcommand(self, *args):
pass
# _listbox_1_xscrollcommand --
#
# Callback to handle _listbox_1 widget option -xscrollcommand
def _listbox_1_xscrollcommand(self, *args):
pass
# _listbox_1_yscrollcommand --
#
# Callback to handle _listbox_1 widget option -yscrollcommand
def _listbox_1_yscrollcommand(self, *args):
pass
# _radiobutton_3_command --
#
# Callback to handle _radiobutton_3 widget option -command
def _radiobutton_3_command(self, *args):
pass
# END CALLBACK CODE
# BEGIN USER CODE class
# END USER CODE class
def main():
# Standalone Code Initialization
# DO NOT EDIT
try: userinit()
except NameError: pass
root = Tk()
demo = CustomInterface1(root)
root.title('Interface1')
try: run()
except NameError: pass
root.protocol('WM_DELETE_WINDOW', root.quit)
root.mainloop()
if __name__ == '__main__': main()