-
Notifications
You must be signed in to change notification settings - Fork 238
/
Copy pathchoose_app_dialog.py
86 lines (68 loc) · 2.73 KB
/
choose_app_dialog.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
from PyQt5 import QtCore, QtWidgets
import os
from pathlib import Path
class ImageButton(QtWidgets.QPushButton):
def __init__(self, icon_path, parent=None):
super().__init__(parent)
icon_path = icon_path.replace('\\', '/')
self.setStyleSheet(f"""
QPushButton {{
border: none;
border-image: url({icon_path}) 0 0 0 0 stretch stretch;
}}
QPushButton:hover {{
border-image: url({icon_path}) 0 0 0 0 stretch stretch;
border: 3px solid #999999;
}}
""")
class CardWidget(QtWidgets.QWidget):
clicked = QtCore.pyqtSignal()
def __init__(self, title, image_path: Path, parent=None):
super(CardWidget, self).__init__(parent)
# Create an image button with the given card image
path = os.path.normpath(image_path)
button = ImageButton(path, self)
# Make the button fill all available space
button.setSizePolicy(
QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Expanding
)
# Add the widget to the UI
layout = QtWidgets.QVBoxLayout(self)
layout.addWidget(button)
# Connect button to signal
button.clicked.connect(self.clicked)
def resizeEvent(self, event):
# Resize the widget to keep the aspect ratio of the image
width = self.width()
new_height = width * 64 // 177 # Adjust height based on width
self.resize(width, int(new_height))
class ChooseAppDialog(QtWidgets.QDialog):
viewerChosen: bool = False
def __init__(self, parent: QtWidgets.QWidget=None):
super(ChooseAppDialog, self).__init__(parent)
self.setWindowTitle("Choose an application")
hbox = QtWidgets.QHBoxLayout()
hbox.setContentsMargins(0, 0, 0, 0)
file_path = Path(os.path.abspath(os.path.dirname(__file__)))
demo_image_path = file_path / "demo_card.png"
viewer_image_path = file_path / "viewer_card.png"
demo_card = CardWidget("DepthAI Demo", demo_image_path)
viewer_card = CardWidget("DepthAI Viewer", viewer_image_path)
hbox.addWidget(demo_card)
hbox.addWidget(viewer_card)
self.setLayout(hbox)
demo_card.clicked.connect(self.runDemo)
viewer_card.clicked.connect(self.runViewer)
# Get screen dimensions
screen = QtWidgets.QApplication.instance().primaryScreen()
screen_size = screen.size()
width = screen_size.width() // 2
height = width // 2 * 64 // 177
self.resize(width, height)
@QtCore.pyqtSlot()
def runDemo(self):
self.accept()
@QtCore.pyqtSlot()
def runViewer(self):
self.viewerChosen = True
self.accept()