diff --git a/gui/dialogs.py b/gui/dialogs.py index a49ca94..55e42e2 100644 --- a/gui/dialogs.py +++ b/gui/dialogs.py @@ -1,4 +1,4 @@ -from PySide6.QtWidgets import QDialog, QDialogButtonBox, QLabel, QVBoxLayout +from PySide6.QtWidgets import QDialog, QDialogButtonBox, QLabel, QVBoxLayout, QWidget, QToolButton, QSizePolicy from PySide6.QtGui import QFont from webbrowser import open_new_tab @@ -32,6 +32,25 @@ class GestaltDialog(QDialog): super().accept() +class PBHelpDialog(QDialog): + def __init__(self, parent=None): + super().__init__(parent) + QBtn = ( + QDialogButtonBox.Ok + ) + self.buttonBox = QDialogButtonBox(QBtn) + self.buttonBox.accepted.connect(self.accept) + + layout = QVBoxLayout() + message = QLabel("Descriptors will be under the Collections section when adding a new wallpaper.") + layout.addWidget(message) + + imgContainer = QWidget() + imgContainer.setSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding) + imgContainer.setStyleSheet("QWidget { border: none; }") + # tut1 = QToolButton() + + class UpdateAppDialog(QDialog): def __init__(self, parent=None): super().__init__(parent) diff --git a/resources_rc.py b/resources_rc.py index a7fb8d9..354ec49 100644 --- a/resources_rc.py +++ b/resources_rc.py @@ -1,6 +1,6 @@ # Resource object code (Python 3) # Created by: object code -# Created by: The Resource Compiler for Qt version 6.6.3 +# Created by: The Resource Compiler for Qt version 6.8.2 # WARNING! All changes made in this file will be lost! from PySide6 import QtCore