mirror of
https://github.com/leminlimez/Nugget.git
synced 2025-04-08 04:23:05 +08:00
start help alert
This commit is contained in:
@@ -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 PySide6.QtGui import QFont
|
||||||
|
|
||||||
from webbrowser import open_new_tab
|
from webbrowser import open_new_tab
|
||||||
@@ -32,6 +32,25 @@ class GestaltDialog(QDialog):
|
|||||||
super().accept()
|
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):
|
class UpdateAppDialog(QDialog):
|
||||||
def __init__(self, parent=None):
|
def __init__(self, parent=None):
|
||||||
super().__init__(parent)
|
super().__init__(parent)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# Resource object code (Python 3)
|
# Resource object code (Python 3)
|
||||||
# Created by: object code
|
# 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!
|
# WARNING! All changes made in this file will be lost!
|
||||||
|
|
||||||
from PySide6 import QtCore
|
from PySide6 import QtCore
|
||||||
|
|||||||
Reference in New Issue
Block a user