-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update launcher to let the user choose between running the Depthai De…
…mo or Depthai Viewer (#1068) * Prompt user to choose between launching depthai demo or depthai viewer when using launcher * Add back signal that I accidentally deleted in merge conflict * Close launcher on choose app dialog cancellation * Change demo card to use the old logo, update the viewer card to include new and beta. Fix initial resize to be symmetric * close splash screen properly, move demo dependency installation into the else branch - how to show splash screen when installing depthai-viewer dependencies? * Ensure that splashScreen.close gets called from the main thread - this fixes NSWindow crashes on macos
- Loading branch information
Showing
5 changed files
with
205 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters