aboutsummaryrefslogtreecommitdiff
path: root/gui/tab_drivers.py
blob: d9a6098c957e3c5505fb7756e9d7bb0f0e264afa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import os
from PyQt6.QtGui import *
from PyQt6.QtWidgets import *

from split_view_layout import *

class TabDrivers(QWidget):
  layout: SplitViewLayout

  def __init__(self, parent=None):
    super(TabDrivers, self).__init__(parent)

    layout = SplitViewLayout(self)
    layout.leftWidget(QLabel("hoi"))
    layout.rightWidget(QLabel("doei"))

    self.setLayout(layout)