From d56e702750b0ab55a20406bee1c4acc6fb748bcd Mon Sep 17 00:00:00 2001 From: damies13 Date: Sat, 23 Nov 2024 15:39:45 +1000 Subject: [PATCH] RFSwarmGUIhtml ReporterGUIhtml classes created but still empty Issue #319 --- rfswarm_manager/RFSwarmGUIhtml.py | 11 +++++++++++ rfswarm_manager/rfswarm.py | 2 ++ rfswarm_reporter/ReporterGUIhtml.py | 11 +++++++++++ rfswarm_reporter/rfswarm_reporter.py | 2 ++ 4 files changed, 26 insertions(+) create mode 100644 rfswarm_manager/RFSwarmGUIhtml.py create mode 100644 rfswarm_reporter/ReporterGUIhtml.py diff --git a/rfswarm_manager/RFSwarmGUIhtml.py b/rfswarm_manager/RFSwarmGUIhtml.py new file mode 100644 index 000000000..672be9273 --- /dev/null +++ b/rfswarm_manager/RFSwarmGUIhtml.py @@ -0,0 +1,11 @@ + +import eel + + +class RFSwarmGUIhtml(): + + def __init__(self): + pass + + def addScriptRow(self): + pass diff --git a/rfswarm_manager/rfswarm.py b/rfswarm_manager/rfswarm.py index 3e19eda77..f9f4ae490 100644 --- a/rfswarm_manager/rfswarm.py +++ b/rfswarm_manager/rfswarm.py @@ -48,6 +48,8 @@ import matplotlib # required for matplot graphs import psutil +from RFSwarmGUIhtml import RFSwarmGUIhtml + # required for matplot graphs from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg from matplotlib.figure import Figure # required for matplot graphs diff --git a/rfswarm_reporter/ReporterGUIhtml.py b/rfswarm_reporter/ReporterGUIhtml.py new file mode 100644 index 000000000..755ca44b8 --- /dev/null +++ b/rfswarm_reporter/ReporterGUIhtml.py @@ -0,0 +1,11 @@ + +import eel + + +class ReporterGUIhtml(): + + def __init__(self): + pass + + def mainloop(self): + pass diff --git a/rfswarm_reporter/rfswarm_reporter.py b/rfswarm_reporter/rfswarm_reporter.py index bedfea551..55eb81487 100644 --- a/rfswarm_reporter/rfswarm_reporter.py +++ b/rfswarm_reporter/rfswarm_reporter.py @@ -51,6 +51,8 @@ from lxml import etree # used for xhtml export from lxml.builder import E, ElementMaker # used for xhtml export +from ReporterGUIhtml import ReporterGUIhtml + # required for matplot graphs from matplotlib.backends.backend_agg import FigureCanvasAgg as FigureCanvas