-
Notifications
You must be signed in to change notification settings - Fork 0
/
PasswordApp1x1.py
128 lines (103 loc) · 3.61 KB
/
PasswordApp1x1.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
""" PasswordApp1x1.py --
UI generated by GUI Builder Build 146 on 2015-07-14 12:10:27 from:
D:/Google Drive/My Documents/Github/Python/PasswordStorage/PasswordApp1x1.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 PasswordApp1x1_ui import PasswordApp1x1
# BEGIN USER CODE global
# END USER CODE global
class CustomPasswordApp1x1(PasswordApp1x1):
pass
# BEGIN CALLBACK CODE
# ONLY EDIT CODE INSIDE THE def FUNCTIONS.
# btnEnterKeyCredentials_command --
#
# Callback to handle btnEnterKeyCredentials widget option -command
def btnEnterKeyCredentials_command(self, *args):
pass
# btnModifyVault_command --
#
# Callback to handle btnModifyVault widget option -command
def btnModifyVault_command(self, *args):
pass
# btnNewVault_command --
#
# Callback to handle btnNewVault widget option -command
def btnNewVault_command(self, *args):
pass
# entPasswordSearch_invalidcommand --
#
# Callback to handle entPasswordSearch widget option -invalidcommand
def entPasswordSearch_invalidcommand(self, *args):
pass
# entPasswordSearch_validatecommand --
#
# Callback to handle entPasswordSearch widget option -validatecommand
def entPasswordSearch_validatecommand(self, *args):
pass
# entPasswordSearch_xscrollcommand --
#
# Callback to handle entPasswordSearch widget option -xscrollcommand
def entPasswordSearch_xscrollcommand(self, *args):
pass
# entVaultText_invalidcommand --
#
# Callback to handle entVaultText widget option -invalidcommand
def entVaultText_invalidcommand(self, *args):
pass
# entVaultText_validatecommand --
#
# Callback to handle entVaultText widget option -validatecommand
def entVaultText_validatecommand(self, *args):
pass
# entVaultText_xscrollcommand --
#
# Callback to handle entVaultText widget option -xscrollcommand
def entVaultText_xscrollcommand(self, *args):
pass
# lstPasswords_xscrollcommand --
#
# Callback to handle lstPasswords widget option -xscrollcommand
def lstPasswords_xscrollcommand(self, *args):
pass
# lstPasswords_yscrollcommand --
#
# Callback to handle lstPasswords widget option -yscrollcommand
def lstPasswords_yscrollcommand(self, *args):
pass
# lstVaultKeySelector_xscrollcommand --
#
# Callback to handle lstVaultKeySelector widget option -xscrollcommand
def lstVaultKeySelector_xscrollcommand(self, *args):
pass
# lstVaultKeySelector_yscrollcommand --
#
# Callback to handle lstVaultKeySelector widget option -yscrollcommand
def lstVaultKeySelector_yscrollcommand(self, *args):
pass
# radUsingText_command --
#
# Callback to handle radUsingText widget option -command
def radUsingText_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 = CustomPasswordApp1x1(root)
root.title('PasswordApp1x1')
try: run()
except NameError: pass
root.protocol('WM_DELETE_WINDOW', root.quit)
root.mainloop()
if __name__ == '__main__': main()