Skip to content

Commit 273f966

Browse files
committed
reorganizing repository
1 parent e54577c commit 273f966

18 files changed

+78
-10
lines changed

.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/Tkinter_SQL.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 33 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Tkinter_SQL.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,12 @@ def btn_clicked3(): #adicionar insumo
109109
relief = "ridge")
110110
canvas.place(x = 0, y = 0)
111111

112-
background_img = PhotoImage(file = f"background.png")
112+
background_img = PhotoImage(file = fr"Tkinter_imgs\background.png")
113113
background = canvas.create_image(
114114
355.5, 323.0,
115115
image=background_img)
116116

117-
img0 = PhotoImage(file = f"img0.png")
117+
img0 = PhotoImage(file = fr"Tkinter_imgs\img0.png")
118118
b0 = Button(
119119
image = img0,
120120
borderwidth = 0,
@@ -127,7 +127,7 @@ def btn_clicked3(): #adicionar insumo
127127
width = 178,
128128
height = 38)
129129

130-
img1 = PhotoImage(file = f"img1.png")
130+
img1 = PhotoImage(file = fr"Tkinter_imgs\img1.png")
131131
b1 = Button(
132132
image = img1,
133133
borderwidth = 0,
@@ -140,7 +140,7 @@ def btn_clicked3(): #adicionar insumo
140140
width = 178,
141141
height = 36)
142142

143-
img2 = PhotoImage(file = f"img2.png")
143+
img2 = PhotoImage(file = fr"Tkinter_imgs\img2.png")
144144
b2 = Button(
145145
image = img2,
146146
borderwidth = 0,
@@ -153,7 +153,7 @@ def btn_clicked3(): #adicionar insumo
153153
width = 178,
154154
height = 35)
155155

156-
img3 = PhotoImage(file = f"img3.png")
156+
img3 = PhotoImage(file = fr"Tkinter_imgs\img3.png")
157157
b3 = Button(
158158
image = img3,
159159
borderwidth = 0,
@@ -166,7 +166,7 @@ def btn_clicked3(): #adicionar insumo
166166
width = 178,
167167
height = 34)
168168

169-
entry0_img = PhotoImage(file = f"img_textBox0.png")
169+
entry0_img = PhotoImage(file = fr"Tkinter_imgs\img_textBox0.png")
170170
entry0_bg = canvas.create_image(
171171
455.0, 560.0,
172172
image = entry0_img)
@@ -181,7 +181,7 @@ def btn_clicked3(): #adicionar insumo
181181
width = 410,
182182
height = 114)
183183

184-
entry1_img = PhotoImage(file = f"img_textBox1.png")
184+
entry1_img = PhotoImage(file = fr"Tkinter_imgs\img_textBox1.png")
185185
entry1_bg = canvas.create_image(
186186
517.0, 294.5,
187187
image = entry1_img)
@@ -196,7 +196,7 @@ def btn_clicked3(): #adicionar insumo
196196
width = 280,
197197
height = 31)
198198

199-
entry2_img = PhotoImage(file = f"img_textBox2.png")
199+
entry2_img = PhotoImage(file = fr"Tkinter_imgs\img_textBox2.png")
200200
entry2_bg = canvas.create_image(
201201
517.0, 340.5,
202202
image = entry2_img)
@@ -211,7 +211,7 @@ def btn_clicked3(): #adicionar insumo
211211
width = 280,
212212
height = 31)
213213

214-
entry3_img = PhotoImage(file = f"img_textBox3.png")
214+
entry3_img = PhotoImage(file = fr"Tkinter_imgs\img_textBox3.png")
215215
entry3_bg = canvas.create_image(
216216
517.0, 388.5,
217217
image = entry3_img)
@@ -226,7 +226,7 @@ def btn_clicked3(): #adicionar insumo
226226
width = 280,
227227
height = 31)
228228

229-
entry4_img = PhotoImage(file = f"img_textBox4.png")
229+
entry4_img = PhotoImage(file = fr"Tkinter_imgs\img_textBox4.png")
230230
entry4_bg = canvas.create_image(
231231
517.0, 436.5,
232232
image = entry4_img)
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)