mg-pso-gui 0.0.132__py3-none-any.whl → 0.0.133__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mg-pso-gui
3
- Version: 0.0.132
3
+ Version: 0.0.133
4
4
  Summary: GUI for MG-PSO
5
5
  Author: Robert Cordingly
6
6
  Author-email: <rcording@uw.ed>
@@ -1,7 +1,7 @@
1
1
  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
- mgpsogui/gui/HomePage.py,sha256=m6xnzalBA9iESJ0uoXyQENwQJOOzmBqKkJxllwSXsCk,25613
4
+ mgpsogui/gui/HomePage.py,sha256=Qs8cZzTNfL3caKs0fKW8KJv9fr_3J-nFbX_pifWP1lo,25479
5
5
  mgpsogui/gui/OptionManager.py,sha256=bFN2jWJbx1Din3waOFLmbWGt0BXD_KthGJ8Mgue_FEE,11712
6
6
  mgpsogui/gui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  mgpsogui/gui/PlatformTab/PlatformTab.py,sha256=N2HSRqT45NH4PPeOwXdLhOASMDjh-1OwUa2WmV47T5M,10465
@@ -25,8 +25,8 @@ mgpsogui/util/PSORunner.py,sha256=7iUYRUXgpZ0l0rqoyHQYY1Yg9q0gl9TE0jNaHZMv04c,29
25
25
  mgpsogui/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
26
  mgpsogui/util/CTkToolTip/__init__.py,sha256=G1jxV55hGtGgwyC1sR-uUUdasDdh0XZgcI-aILgGYA0,225
27
27
  mgpsogui/util/CTkToolTip/ctk_tooltip.py,sha256=SZMovpQIGvdpDRbqCKl9SHs92DrFCO2MOYL2ifolvOE,6329
28
- mg_pso_gui-0.0.132.dist-info/METADATA,sha256=KI9pJZXXrsfKsZkUD7TGbB4qVDpN3GyuJPigXfgfsYE,9459
29
- mg_pso_gui-0.0.132.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
30
- mg_pso_gui-0.0.132.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
31
- mg_pso_gui-0.0.132.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
32
- mg_pso_gui-0.0.132.dist-info/RECORD,,
28
+ mg_pso_gui-0.0.133.dist-info/METADATA,sha256=uaz_ivOCYz7rVUxnj2JNXVPAO25vX2vDSr9q_GWQuls,9459
29
+ mg_pso_gui-0.0.133.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
30
+ mg_pso_gui-0.0.133.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
31
+ mg_pso_gui-0.0.133.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
32
+ mg_pso_gui-0.0.133.dist-info/RECORD,,
mgpsogui/gui/HomePage.py CHANGED
@@ -66,21 +66,19 @@ class App(customtkinter.CTk):
66
66
  self.geometry(f"{1920}x{1080}")
67
67
 
68
68
  # configure grid layout (4x4)
69
- self.grid_columnconfigure(1, weight=8)
70
- self.grid_columnconfigure(2, weight=1)
71
- self.grid_rowconfigure((1), weight=1)
72
- self.grid_rowconfigure((0), weight=4)
69
+ self.grid_columnconfigure(0, weight=1)
70
+ self.grid_rowconfigure(1, weight=1)
73
71
 
74
72
  # create sidebar frame with widgets
75
73
  self.sidebar_frame = customtkinter.CTkFrame(self, width=140, corner_radius=0)
76
- self.sidebar_frame.grid(row=0, column=0, columnspan=4, sticky="nsew")
74
+ self.sidebar_frame.grid(row=0, column=0, sticky="nsew")
77
75
  self.sidebar_frame.grid_columnconfigure(4, weight=1)
78
76
  self.logo_label = customtkinter.CTkLabel(self.sidebar_frame, text="CSIP PSO", font=customtkinter.CTkFont(size=20, weight="bold"))
79
77
  self.logo_label.grid(row=0, column=0, padx=20, pady=(20, 20))
80
78
  self.save_button = customtkinter.CTkButton(self.sidebar_frame, text="Save", command=self.save_project)
81
79
  self.save_button.grid(row=0, column=1, padx=20, pady=(10, 10))
82
80
  self.load_button = customtkinter.CTkButton(self.sidebar_frame, text="Load", command=self.load_project)
83
- self.load_button.grid(row=0, column=1, padx=20, pady=(10, 10))
81
+ self.load_button.grid(row=0, column=2, padx=20, pady=(10, 10))
84
82
 
85
83
  self.new_window = customtkinter.CTkButton(self.sidebar_frame, text="New Window", command=self.new_window)
86
84
  self.new_window.grid(row=0, column=6, padx=20, pady=(10, 10))
@@ -93,7 +91,7 @@ class App(customtkinter.CTk):
93
91
  self.scaling_optionemenu.set("100%")
94
92
 
95
93
  self.tabview = customtkinter.CTkTabview(self)
96
- self.tabview.grid(row=1, column=0, columnspan=2, rowspan=2, padx=(20, 20), pady=(20, 20), sticky="nsew")
94
+ self.tabview.grid(row=1, column=0, padx=(20, 20), pady=(20, 20), sticky="nsew")
97
95
  tab1 = "Platform"
98
96
  tab2 = "Setup"
99
97
  tab3 = "Run"