aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNao Pross <np@0hm.ch>2021-12-16 19:10:12 +0100
committerNao Pross <np@0hm.ch>2021-12-16 19:10:12 +0100
commit8c90f7920a455a51c425731d032f5f475c1685d0 (patch)
treed1a1a39ab799ec5ab401a3bdf1844d1aee5dbdab /src
parentChange size of constellation plot diagrams (diff)
downloadFading-8c90f7920a455a51c425731d032f5f475c1685d0.tar.gz
Fading-8c90f7920a455a51c425731d032f5f475c1685d0.zip
Small GUI corrections for screenshot (incomplete)
Diffstat (limited to 'src')
-rwxr-xr-xsrc/gui/gui.py21
1 files changed, 9 insertions, 12 deletions
diff --git a/src/gui/gui.py b/src/gui/gui.py
index 6634d8f..b31447c 100755
--- a/src/gui/gui.py
+++ b/src/gui/gui.py
@@ -41,11 +41,10 @@ setup_dearpygui()
#================================================
# Globl variables
-# ber_win_tag = "ber_window"
-# ber_win_pos = (0,25)
-# ber_win_width = 800
-# ber_win_height = 160
-
+ber_win_tag = "ber_window"
+ber_win_pos = (0,25)
+ber_win_width = 800
+ber_win_height = 160
# Network Plots
time_plot = net.network_plot(url="udp://localhost:31415", dtype=float, \
@@ -266,7 +265,7 @@ with window(label="Time domain", width=800, height=400, pos=(0,185), \
#TO DO:BER von GNU Radio anzeigen
-with theme(tag="ber_window"):
+with theme(tag="theme_ber_window"):
with theme_component(mvAll):
add_theme_style(mvStyleVar_WindowTitleAlign, 0.5)
add_theme_style(mvStyleVar_WindowBorderSize, 0)#Rad ein und aus Schalten
@@ -274,7 +273,6 @@ with theme(tag="ber_window"):
with window(label="Bit Error Rate ", width=800, height=160, pos=(0,25),\
no_collapse=True, no_close=True, no_title_bar= True,no_move=True,no_resize=True,\
tag=ber_win_tag) as ber_window:
- with ber:
add_text("The Bit Error Rate is:",pos=(50,25))
with theme(tag="button_ber"):
with theme_component(mvButton):
@@ -284,8 +282,7 @@ with window(label="Bit Error Rate ", width=800, height=160, pos=(0,25),\
add_button(label="BER", height=60, width=700, pos=(50,70), tag="ber_value")
bind_item_theme(last_item(), "button_ber")
-
- bind_item_theme(ber_window, "ber_window")
+ bind_item_theme(ber_window, "theme_ber_window")
def set_ber(values):
ber_curr, ber_max, ber_avg = values
@@ -303,9 +300,9 @@ set_primary_window("primary_window", True)
# Main loop
while is_dearpygui_running():
- # for plt in network_plots:
- # plt.refresh_series(plt.series_tag)
- # ber_value.refresh()
+ for plt in network_plots:
+ plt.refresh_series(plt.series_tag)
+ ber_value.refresh()
render_dearpygui_frame()