mg-pso-gui 0.1.17__py3-none-any.whl → 0.1.18__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mg_pso_gui-0.1.17.dist-info → mg_pso_gui-0.1.18.dist-info}/METADATA +1 -1
- {mg_pso_gui-0.1.17.dist-info → mg_pso_gui-0.1.18.dist-info}/RECORD +6 -6
- mgpsogui/gui/HomePage.py +3 -3
- {mg_pso_gui-0.1.17.dist-info → mg_pso_gui-0.1.18.dist-info}/WHEEL +0 -0
- {mg_pso_gui-0.1.17.dist-info → mg_pso_gui-0.1.18.dist-info}/entry_points.txt +0 -0
- {mg_pso_gui-0.1.17.dist-info → mg_pso_gui-0.1.18.dist-info}/top_level.txt +0 -0
|
@@ -2,7 +2,7 @@ mgpsogui/__init__.py,sha256=q7AfBjeJABnFtbsZnsObpUwaXKPDVYtz46G6MKXLF74,42
|
|
|
2
2
|
mgpsogui/mgpsogui.py,sha256=NIZmyNcbwC8EgSwf1ubdMUSJscrIEgoD4jLYziqHQ-k,148
|
|
3
3
|
mgpsogui/start.yaml,sha256=ZjCVLb-MLqAxrGRm9kA7_SDpa-45EuKIELNQ2QqCAiU,4713
|
|
4
4
|
mgpsogui/trace.json,sha256=BeXTnMzXKeyaZwBHYC6KMipOnF4zH0kgZXl1CWVblJA,9615
|
|
5
|
-
mgpsogui/gui/HomePage.py,sha256=
|
|
5
|
+
mgpsogui/gui/HomePage.py,sha256=qZ--m1MTVrZehwecEAZrlmCMzWNSJTWsNlChh5IUHzQ,24015
|
|
6
6
|
mgpsogui/gui/OptionManager.py,sha256=bFN2jWJbx1Din3waOFLmbWGt0BXD_KthGJ8Mgue_FEE,11712
|
|
7
7
|
mgpsogui/gui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
8
|
mgpsogui/gui/PlatformTab/PlatformTab.py,sha256=KyIoHlMKD9nfQqHeGJwRDA4RCoe4UykjB2l6xMTKK_M,10486
|
|
@@ -45,8 +45,8 @@ mgpsogui/util/recosu/utils/trace_writer.py,sha256=V9BJlOjCbNYGoXGEk3CF5wjifBxvar
|
|
|
45
45
|
mgpsogui/util/recosu/utils/utils.py,sha256=QB8vftq3142ekG0ORjz0ZBHU5YknXbR0oTsrxrPAsF0,3951
|
|
46
46
|
mgpsogui/util/recosu/utils/plot/__init__.py,sha256=h1KjM7_tNDv351pcwt8A6Ibb1jhwWyx5Gbu-zj-sI3Q,71
|
|
47
47
|
mgpsogui/util/recosu/utils/plot/cost_steps.py,sha256=1Ce11AJyweWkmvjXPxEygzS-h8yVLmQEDLS53yjPLqQ,3779
|
|
48
|
-
mg_pso_gui-0.1.
|
|
49
|
-
mg_pso_gui-0.1.
|
|
50
|
-
mg_pso_gui-0.1.
|
|
51
|
-
mg_pso_gui-0.1.
|
|
52
|
-
mg_pso_gui-0.1.
|
|
48
|
+
mg_pso_gui-0.1.18.dist-info/METADATA,sha256=KDWWnvVAYtU415ZVNEWF14seJvsKpgtJXol3YymhQlo,9458
|
|
49
|
+
mg_pso_gui-0.1.18.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
|
|
50
|
+
mg_pso_gui-0.1.18.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
|
|
51
|
+
mg_pso_gui-0.1.18.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
|
|
52
|
+
mg_pso_gui-0.1.18.dist-info/RECORD,,
|
mgpsogui/gui/HomePage.py
CHANGED
|
@@ -113,7 +113,7 @@ class App(customtkinter.CTk):
|
|
|
113
113
|
|
|
114
114
|
expand_image = customtkinter.CTkImage(Image.open(os.path.join("./images", "expand.png")), size=(20, 20))
|
|
115
115
|
self.new_window = customtkinter.CTkButton(self.sidebar_frame, text=None, width=30, image=expand_image, command=self.new_window)
|
|
116
|
-
ctt(self.
|
|
116
|
+
ctt(self.new_window, delay=0.1, alpha=0.95, message="Open New Window")
|
|
117
117
|
self.new_window.grid(row=0, column=8, padx=(5, 20), pady=header_padding_y)
|
|
118
118
|
|
|
119
119
|
self.tabview = customtkinter.CTkTabview(self, bg_color="transparent", fg_color="transparent")
|
|
@@ -148,7 +148,7 @@ class App(customtkinter.CTk):
|
|
|
148
148
|
self.footer_progress_bar.grid(row=0, column=4, padx=(50, 100), pady=header_padding_y, sticky="ew")
|
|
149
149
|
self.footer_progress_bar.set(0)
|
|
150
150
|
|
|
151
|
-
self.algorithm_optionmenu = customtkinter.CTkOptionMenu(self.
|
|
151
|
+
self.algorithm_optionmenu = customtkinter.CTkOptionMenu(self.footer_frame, values=["PSO", "Halton"], width=50)
|
|
152
152
|
self.algorithm_optionmenu.grid(row=0, column=6, padx=header_padding_x, pady=header_padding_y)
|
|
153
153
|
self.algorithm_optionmenu.set("PSO")
|
|
154
154
|
|
|
@@ -168,7 +168,7 @@ class App(customtkinter.CTk):
|
|
|
168
168
|
self.stop_button.grid(row=0, column=9, padx=(5, 20), pady=header_padding_y)
|
|
169
169
|
|
|
170
170
|
download_image = customtkinter.CTkImage(Image.open(os.path.join("./images", "down.png")), size=(20, 20))
|
|
171
|
-
self.download_button = customtkinter.CTkButton(self.footer_frame, text=None, width=30, image=
|
|
171
|
+
self.download_button = customtkinter.CTkButton(self.footer_frame, text=None, width=30, image=download_image, command=self.stop)
|
|
172
172
|
ctt(self.download_button, delay=0.1, alpha=0.95, message="Download Results")
|
|
173
173
|
self.download_button.grid(row=0, column=10, padx=(5, 20), pady=header_padding_y)
|
|
174
174
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|