start help alert

This commit is contained in:
leminlimez
2025-03-20 22:22:29 -04:00
parent 4131719ff3
commit 14ae6cbfdd
2 changed files with 21 additions and 2 deletions

View File

@@ -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)

View File

@@ -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