|
| 1 | +from PySide2.QtWidgets import QApplication, QPushButton, QWidget, QHBoxLayout, QVBoxLayout, QLabel, QSizePolicy, QScrollBar |
| 2 | +from PySide2.QtGui import QPainter |
| 3 | +from PySide2.QtCore import Qt |
| 4 | + |
| 5 | +from dot import CircleWidget |
| 6 | + |
| 7 | +class EyePilotComponent(): |
| 8 | + |
| 9 | + def __init__(self, text, id = None): |
| 10 | + self.text = text |
| 11 | + if id is None: |
| 12 | + self.id = text |
| 13 | + else: |
| 14 | + self.id = id |
| 15 | + self.signal = None |
| 16 | + |
| 17 | + def addSignal(self,signal): |
| 18 | + self.signal = signal |
| 19 | + |
| 20 | + def getText(self): |
| 21 | + return self.text |
| 22 | + |
| 23 | + def getID(self): |
| 24 | + return self.id |
| 25 | + |
| 26 | +class EyePilotButtonComponent(EyePilotComponent,QPushButton): |
| 27 | + |
| 28 | + def __init__(self, text, id = None, parent=None): |
| 29 | + super().__init__(text, id) |
| 30 | + super(EyePilotComponent, self).__init__(text, parent) |
| 31 | + |
| 32 | +class ScrollBarWithText(QScrollBar): |
| 33 | + def __init__(self, text, *args, **kwargs): |
| 34 | + super().__init__(*args, **kwargs) |
| 35 | + self.text = text |
| 36 | + |
| 37 | + def update_text(self,text): |
| 38 | + self.text = text |
| 39 | + |
| 40 | + def paintEvent(self, event): |
| 41 | + super().paintEvent(event) |
| 42 | + |
| 43 | + painter = QPainter(self) |
| 44 | + font_metrics = painter.fontMetrics() |
| 45 | + text_width = font_metrics.width(self.text) |
| 46 | + text_height = font_metrics.height() |
| 47 | + |
| 48 | + # Calculate position to center the text |
| 49 | + x = (self.width() - text_width) // 2 |
| 50 | + y = (self.height() + text_height) // 2 |
| 51 | + |
| 52 | + # Draw the text |
| 53 | + painter.drawText(x, y, self.text) |
| 54 | + |
| 55 | +class EyePilotScrollComponent(EyePilotComponent,QWidget): |
| 56 | + |
| 57 | + def __init__(self, text, id = None, parent=None): |
| 58 | + super().__init__(text, id) |
| 59 | + super(EyePilotComponent, self).__init__() |
| 60 | + |
| 61 | + |
| 62 | +class EyePilotButton(EyePilotButtonComponent): |
| 63 | + def __init__(self, text, id = None, signal=None, parent=None): |
| 64 | + super().__init__(text, id, parent) |
| 65 | + |
| 66 | + # Set the style |
| 67 | + button_style = """ |
| 68 | + QPushButton { |
| 69 | + color: white; |
| 70 | + font-size: 25px; |
| 71 | + background-color: rgba(255, 255, 255, 0.0); |
| 72 | + width: 200px; |
| 73 | + height: 45px; |
| 74 | + max-width: 200px; |
| 75 | + margin-left: auto; |
| 76 | + margin-right: auto; |
| 77 | + } |
| 78 | +
|
| 79 | + QPushButton:hover { |
| 80 | + background: qradialgradient(cx:0.5, cy:0.5, radius:0.5, fx:0.5, fy:0.5, stop:0 rgba(56, 60, 79, 0.5), stop:1 rgba(56, 60, 79, 0.3)); |
| 81 | + border-radius: 5px; |
| 82 | + } |
| 83 | + """ |
| 84 | + |
| 85 | + self.setStyleSheet(button_style) |
| 86 | + self.signal = signal |
| 87 | + self.clicked.connect(self.click) |
| 88 | + |
| 89 | + def click(self): |
| 90 | + |
| 91 | + if self.signal: |
| 92 | + self.signal() |
| 93 | + |
| 94 | +class EyePilotButtonColorChoice(EyePilotButtonComponent): |
| 95 | + def __init__(self, text, id = None, signal=None, color = (45,45,45), parent=None): |
| 96 | + super().__init__(text,id,parent) |
| 97 | + |
| 98 | + # Set the style |
| 99 | + button_style = """ |
| 100 | + QPushButton { |
| 101 | + color: white; |
| 102 | + font-size: 25px; |
| 103 | + background-color: rgba(255, 255, 255, 0.0); |
| 104 | + width: 300px; |
| 105 | + height: 100px; |
| 106 | + min-height: 100px; |
| 107 | + padding-left: 50px; |
| 108 | + } |
| 109 | +
|
| 110 | + QPushButton:hover { |
| 111 | + background: qradialgradient(cx:0.5, cy:0.5, radius:0.5, fx:0.5, fy:0.5, stop:0 rgba(56, 60, 79, 0.5), stop:1 rgba(56, 60, 79, 0.3)); |
| 112 | + border-radius: 5px; |
| 113 | + } |
| 114 | +
|
| 115 | + """ |
| 116 | + |
| 117 | + self.setStyleSheet(button_style) |
| 118 | + self.signal = signal |
| 119 | + self.color = color |
| 120 | + |
| 121 | + self.model_dot = CircleWidget() |
| 122 | + layout_center = self.geometry().center() |
| 123 | + self.model_dot.setPosition(50,50) |
| 124 | + self.model_dot.setColor(color[0],color[1],color[2]) |
| 125 | + self.model_dot.setParent(self) |
| 126 | + self.clicked.connect(self.click) |
| 127 | + |
| 128 | + def click(self): |
| 129 | + if self.signal: |
| 130 | + self.signal(self.color) |
| 131 | + |
| 132 | + |
| 133 | +class EyePilotScroll(EyePilotScrollComponent): |
| 134 | + def __init__(self, text, id = None, signal=None, start=1, init=1, end=10, parent=None): |
| 135 | + super().__init__(text,id,parent) |
| 136 | + |
| 137 | + # Set the style |
| 138 | + scroll_styele = """ |
| 139 | + QScrollBar { |
| 140 | + color: black; |
| 141 | + font-size: 25px; |
| 142 | + min-height: 60px; |
| 143 | + background-color: rgba(255, 255, 255, 0.0); |
| 144 | +
|
| 145 | + } |
| 146 | +
|
| 147 | + QScrollBar:horizontal { |
| 148 | + background: white; |
| 149 | + height: 15px; |
| 150 | + margin: 0px 40px 0 40px; |
| 151 | + } |
| 152 | +
|
| 153 | + QScrollBar::add-line:horizontal { |
| 154 | + background: white; |
| 155 | + width: 40px; |
| 156 | + border-top-right-radius: 10px; |
| 157 | + border-bottom-right-radius: 10px; |
| 158 | + subcontrol-position: right; |
| 159 | + subcontrol-origin: margin; |
| 160 | + } |
| 161 | +
|
| 162 | + QScrollBar::sub-line:horizontal { |
| 163 | + background: white; |
| 164 | + width: 40px; |
| 165 | + border-top-left-radius: 10px; |
| 166 | + border-bottom-left-radius: 10px; |
| 167 | + subcontrol-position: left; |
| 168 | + subcontrol-origin: margin; |
| 169 | + } |
| 170 | +
|
| 171 | + QScrollBar::handle:horizontal { |
| 172 | + background: rgba(56, 60, 79, 0.5); |
| 173 | + min-width: 20px; |
| 174 | + } |
| 175 | + QScrollBar::left-arrow:horizontal { |
| 176 | + min-width: 40px; |
| 177 | + border-top-left-radius: 10px; |
| 178 | + border-bottom-left-radius: 10px; |
| 179 | + background: rgba(150,10,10, 0.2); |
| 180 | + } |
| 181 | + QScrollBar::right-arrow:horizontal { |
| 182 | + min-width: 40px; |
| 183 | + border-top-right-radius: 10px; |
| 184 | + border-bottom-right-radius: 10px; |
| 185 | + background: rgba(10,50,150, 0.2); |
| 186 | + } |
| 187 | +
|
| 188 | + QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal { |
| 189 | + background: none; |
| 190 | + } |
| 191 | + """ |
| 192 | + label_style = """ |
| 193 | + QLabel { |
| 194 | + color: white; |
| 195 | + font-size: 25px; |
| 196 | + margin-left: auto; |
| 197 | + margin-right: auto; |
| 198 | + } |
| 199 | + """ |
| 200 | + main_layout = QHBoxLayout(self) |
| 201 | + v_container = QWidget() |
| 202 | + self.layout = QVBoxLayout(v_container) |
| 203 | + |
| 204 | + self.label = QLabel(self.text) |
| 205 | + self.label.setStyleSheet(label_style) |
| 206 | + |
| 207 | + self.scrollbar = ScrollBarWithText(f"{init}") |
| 208 | + self.scrollbar.setMinimum(start) |
| 209 | + self.scrollbar.setMaximum(end) |
| 210 | + self.scrollbar.setValue(init) |
| 211 | + self.scrollbar.setOrientation(Qt.Horizontal) # Vertical orientation |
| 212 | + self.scrollbar.valueChanged.connect(self.on_change) |
| 213 | + |
| 214 | + self.scrollbar.setStyleSheet(scroll_styele) |
| 215 | + |
| 216 | + |
| 217 | + self.layout.addWidget(self.label) |
| 218 | + self.layout.addWidget(self.scrollbar) |
| 219 | + # self.setLayout(self.layout) |
| 220 | + main_layout.addWidget(v_container) |
| 221 | + |
| 222 | + |
| 223 | + def on_change(self,value): |
| 224 | + if self.signal: |
| 225 | + self.signal(value) |
| 226 | + self.scrollbar.update_text(f"{value}") |
0 commit comments