26
26
import itertools
27
27
28
28
29
- class GUI_3D_obs_initial :
29
+ class GUI3DObs :
30
30
31
31
'''
32
32
@@ -56,7 +56,9 @@ def __init__(self, window, grid_col, grid_row, obs_sequence):
56
56
57
57
#a mainframe
58
58
self .main_frame = ttk .Frame (self .window , padding = "8" )
59
- self .main_frame .grid (column = grid_col , row = grid_row , sticky = "N, S, E, W" )
59
+ self .main_frame .grid (column = grid_col , row = grid_row , sticky = "N, S, E, W" )
60
+
61
+ #resizing
60
62
self .main_frame .grid_columnconfigure (0 , weight = 1 ) #weights for whole grid
61
63
self .main_frame .grid_rowconfigure (0 , weight = 1 ) #weights for whole grid
62
64
self .main_frame .grid_columnconfigure (1 , weight = 20 )
@@ -105,13 +107,12 @@ def __init__(self, window, grid_col, grid_row, obs_sequence):
105
107
self .obs_menu .configure (yscrollcommand = self .obs_bar .set )
106
108
self .obs_bar .grid (column = 2 , row = 2 , rowspan = 2 , sticky = "N, S, W" )
107
109
110
+ #resizing
108
111
self .obs_frame .grid_columnconfigure (1 , weight = 1 )
109
112
self .obs_frame .grid_columnconfigure (2 , weight = 1 )
110
113
self .obs_frame .grid_rowconfigure (1 , weight = 1 )
111
114
self .obs_frame .grid_rowconfigure (2 , weight = 1 )
112
115
113
-
114
-
115
116
#time selection
116
117
self .times = StringVar ()
117
118
@@ -126,7 +127,8 @@ def __init__(self, window, grid_col, grid_row, obs_sequence):
126
127
self .times_bar = ttk .Scrollbar (self .times_frame , orient = VERTICAL , command = self .times_menu .yview )
127
128
self .times_menu .configure (yscrollcommand = self .times_bar .set )
128
129
self .times_bar .grid (column = 2 , row = 2 , rowspan = 2 , sticky = "N, S, W" )
129
-
130
+
131
+ #resizing
130
132
self .times_frame .grid_columnconfigure (1 , weight = 1 )
131
133
self .times_frame .grid_columnconfigure (2 , weight = 1 )
132
134
self .times_frame .grid_rowconfigure (1 , weight = 1 )
@@ -148,6 +150,7 @@ def __init__(self, window, grid_col, grid_row, obs_sequence):
148
150
self .qc_menu .configure (xscrollcommand = self .qc_bar .set )
149
151
self .qc_bar .grid (column = 1 , row = 3 , rowspan = 1 , sticky = "N, S, E, W" )
150
152
153
+ #resizing
151
154
self .qc_frame .grid_rowconfigure (1 , weight = 1 )
152
155
self .qc_frame .grid_rowconfigure (2 , weight = 1 )
153
156
self .qc_frame .grid_rowconfigure (3 , weight = 1 )
@@ -208,6 +211,7 @@ def __init__(self, window, grid_col, grid_row, obs_sequence):
208
211
value = "Observation value" )
209
212
self .val_button .grid (column = 1 , row = 3 , sticky = "N, S, E, W" )
210
213
214
+ #resizing
211
215
self .fill_frame .rowconfigure (1 , weight = 1 )
212
216
self .fill_frame .rowconfigure (2 , weight = 1 )
213
217
self .fill_frame .rowconfigure (3 , weight = 1 )
@@ -312,8 +316,10 @@ def plot_3D(self, event = None):
312
316
self .toolbar = NavigationToolbar2TkAgg (canvas , self .toolbar_frame )
313
317
self .toolbar_frame .grid (column = 1 , row = 5 , sticky = "N, S, E, W" )
314
318
self .toolbar .grid (column = 1 , row = 1 , sticky = "N, S, E, W" )
319
+ #resizing
315
320
self .toolbar_frame .grid_columnconfigure (1 , weight = 1 )
316
321
self .toolbar_frame .grid_rowconfigure (1 , weight = 1 )
322
+
317
323
#disable part of the coordinate display functionality, else everything flickers (may need for smaller window)
318
324
#ax.format_coord = lambda x, y: ''
319
325
@@ -415,7 +421,7 @@ def main(obs_sequence):
415
421
416
422
root = Tk ()
417
423
root .title ("3D Observation Plotter" )
418
- widg = GUI_3D_obs_initial (root , 0 , 0 , obs_sequence )
424
+ widg = GUI3DObs (root , 0 , 0 , obs_sequence )
419
425
widg .plot_3D ()
420
426
root .style = ttk .Style ()
421
427
root .style .theme_use ('clam' )
0 commit comments