Create a simple menu to manage the dock widget.
(self)
| 146 | self.setCentralWidget(self.chart_view) |
| 147 | |
| 148 | def setupMenu(self): |
| 149 | """Create a simple menu to manage the dock widget.""" |
| 150 | menu_bar = self.menuBar() |
| 151 | menu_bar.setNativeMenuBar(False) |
| 152 | |
| 153 | # Create view menu and add actions |
| 154 | view_menu = menu_bar.addMenu('View') |
| 155 | view_menu.addAction(self.toggle_dock_tools_act) |
| 156 | |
| 157 | def setupToolsDockWidget(self): |
| 158 | """Set up the dock widget that displays different tools and themes for |