MCPcopy Create free account
hub / github.com/geekcomputers/Python / init_ui

Method init_ui

ML/tests/gui_test.py:75–89  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

73 self.apply_stylesheet()
74
75 def init_ui(self):
76 self.setWindowTitle('NeuralForge - Model Tester')
77 self.setGeometry(100, 100, 1200, 800)
78
79 central_widget = QWidget()
80 self.setCentralWidget(central_widget)
81
82 main_layout = QHBoxLayout()
83 central_widget.setLayout(main_layout)
84
85 left_panel = self.create_left_panel()
86 right_panel = self.create_right_panel()
87
88 main_layout.addWidget(left_panel, 1)
89 main_layout.addWidget(right_panel, 1)
90
91 def create_left_panel(self):
92 panel = QWidget()

Callers 1

__init__Method · 0.95

Calls 2

create_left_panelMethod · 0.95
create_right_panelMethod · 0.95

Tested by

no test coverage detected