Q2NSViz 0.1.0
Q2NS trace visualizer
Loading...
Searching...
No Matches
ui/__init__.py
Go to the documentation of this file.
1# -----------------------------------------------------------------------------
2# Q2NSViz - Quantum Network Trace Visualizer
3# Copyright (c) 2026 QuantumInternet.it
4#
5# This program is released under the MIT License - see LICENSE for details.
6# -----------------------------------------------------------------------------
7
8from .canvas import NetworkCanvas
9from .charts import MATPLOTLIB_AVAILABLE, ChartCanvas
10from .panels import ControlPanel, InfoPanel
11from .theme import Theme
12from .window import PlaybackController, QuantumVisualizerWindow, main
13
14__all__ = [
15 "MATPLOTLIB_AVAILABLE",
16 "ChartCanvas",
17 "ControlPanel",
18 "InfoPanel",
19 "NetworkCanvas",
20 "PlaybackController",
21 "QuantumVisualizerWindow",
22 "Theme",
23 "main",
24]