mirror of
https://github.com/pyqt/examples.git
synced 2025-08-25 02:57:09 +00:00
245 lines
8.6 KiB
Python
245 lines
8.6 KiB
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
|
||
|
#############################################################################
|
||
|
##
|
||
|
## Copyright (C) 2013 Riverbank Computing Limited.
|
||
|
## Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
||
|
## All rights reserved.
|
||
|
##
|
||
|
## This file is part of the examples of PyQt.
|
||
|
##
|
||
|
## $QT_BEGIN_LICENSE:BSD$
|
||
|
## You may use this file under the terms of the BSD license as follows:
|
||
|
##
|
||
|
## "Redistribution and use in source and binary forms, with or without
|
||
|
## modification, are permitted provided that the following conditions are
|
||
|
## met:
|
||
|
## * Redistributions of source code must retain the above copyright
|
||
|
## notice, this list of conditions and the following disclaimer.
|
||
|
## * Redistributions in binary form must reproduce the above copyright
|
||
|
## notice, this list of conditions and the following disclaimer in
|
||
|
## the documentation and/or other materials provided with the
|
||
|
## distribution.
|
||
|
## * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
|
||
|
## the names of its contributors may be used to endorse or promote
|
||
|
## products derived from this software without specific prior written
|
||
|
## permission.
|
||
|
##
|
||
|
## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||
|
## "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||
|
## LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||
|
## A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||
|
## OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||
|
## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||
|
## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||
|
## DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||
|
## THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||
|
## (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||
|
## OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
||
|
## $QT_END_LICENSE$
|
||
|
##
|
||
|
#############################################################################
|
||
|
|
||
|
|
||
|
from PyQt5.QtCore import QDate, QSize, Qt
|
||
|
from PyQt5.QtGui import QIcon
|
||
|
from PyQt5.QtWidgets import (QApplication, QCheckBox, QComboBox, QDateTimeEdit,
|
||
|
QDialog, QGridLayout, QGroupBox, QHBoxLayout, QLabel, QLineEdit,
|
||
|
QListView, QListWidget, QListWidgetItem, QPushButton, QSpinBox,
|
||
|
QStackedWidget, QVBoxLayout, QWidget)
|
||
|
|
||
|
import configdialog_rc
|
||
|
|
||
|
|
||
|
class ConfigurationPage(QWidget):
|
||
|
def __init__(self, parent=None):
|
||
|
super(ConfigurationPage, self).__init__(parent)
|
||
|
|
||
|
configGroup = QGroupBox("Server configuration")
|
||
|
|
||
|
serverLabel = QLabel("Server:")
|
||
|
serverCombo = QComboBox()
|
||
|
serverCombo.addItem("Trolltech (Australia)")
|
||
|
serverCombo.addItem("Trolltech (Germany)")
|
||
|
serverCombo.addItem("Trolltech (Norway)")
|
||
|
serverCombo.addItem("Trolltech (People's Republic of China)")
|
||
|
serverCombo.addItem("Trolltech (USA)")
|
||
|
|
||
|
serverLayout = QHBoxLayout()
|
||
|
serverLayout.addWidget(serverLabel)
|
||
|
serverLayout.addWidget(serverCombo)
|
||
|
|
||
|
configLayout = QVBoxLayout()
|
||
|
configLayout.addLayout(serverLayout)
|
||
|
configGroup.setLayout(configLayout)
|
||
|
|
||
|
mainLayout = QVBoxLayout()
|
||
|
mainLayout.addWidget(configGroup)
|
||
|
mainLayout.addStretch(1)
|
||
|
|
||
|
self.setLayout(mainLayout)
|
||
|
|
||
|
|
||
|
class UpdatePage(QWidget):
|
||
|
def __init__(self, parent=None):
|
||
|
super(UpdatePage, self).__init__(parent)
|
||
|
|
||
|
updateGroup = QGroupBox("Package selection")
|
||
|
systemCheckBox = QCheckBox("Update system")
|
||
|
appsCheckBox = QCheckBox("Update applications")
|
||
|
docsCheckBox = QCheckBox("Update documentation")
|
||
|
|
||
|
packageGroup = QGroupBox("Existing packages")
|
||
|
|
||
|
packageList = QListWidget()
|
||
|
qtItem = QListWidgetItem(packageList)
|
||
|
qtItem.setText("Qt")
|
||
|
qsaItem = QListWidgetItem(packageList)
|
||
|
qsaItem.setText("QSA")
|
||
|
teamBuilderItem = QListWidgetItem(packageList)
|
||
|
teamBuilderItem.setText("Teambuilder")
|
||
|
|
||
|
startUpdateButton = QPushButton("Start update")
|
||
|
|
||
|
updateLayout = QVBoxLayout()
|
||
|
updateLayout.addWidget(systemCheckBox)
|
||
|
updateLayout.addWidget(appsCheckBox)
|
||
|
updateLayout.addWidget(docsCheckBox)
|
||
|
updateGroup.setLayout(updateLayout)
|
||
|
|
||
|
packageLayout = QVBoxLayout()
|
||
|
packageLayout.addWidget(packageList)
|
||
|
packageGroup.setLayout(packageLayout)
|
||
|
|
||
|
mainLayout = QVBoxLayout()
|
||
|
mainLayout.addWidget(updateGroup)
|
||
|
mainLayout.addWidget(packageGroup)
|
||
|
mainLayout.addSpacing(12)
|
||
|
mainLayout.addWidget(startUpdateButton)
|
||
|
mainLayout.addStretch(1)
|
||
|
|
||
|
self.setLayout(mainLayout)
|
||
|
|
||
|
|
||
|
class QueryPage(QWidget):
|
||
|
def __init__(self, parent=None):
|
||
|
super(QueryPage, self).__init__(parent)
|
||
|
|
||
|
packagesGroup = QGroupBox("Look for packages")
|
||
|
|
||
|
nameLabel = QLabel("Name:")
|
||
|
nameEdit = QLineEdit()
|
||
|
|
||
|
dateLabel = QLabel("Released after:")
|
||
|
dateEdit = QDateTimeEdit(QDate.currentDate())
|
||
|
|
||
|
releasesCheckBox = QCheckBox("Releases")
|
||
|
upgradesCheckBox = QCheckBox("Upgrades")
|
||
|
|
||
|
hitsSpinBox = QSpinBox()
|
||
|
hitsSpinBox.setPrefix("Return up to ")
|
||
|
hitsSpinBox.setSuffix(" results")
|
||
|
hitsSpinBox.setSpecialValueText("Return only the first result")
|
||
|
hitsSpinBox.setMinimum(1)
|
||
|
hitsSpinBox.setMaximum(100)
|
||
|
hitsSpinBox.setSingleStep(10)
|
||
|
|
||
|
startQueryButton = QPushButton("Start query")
|
||
|
|
||
|
packagesLayout = QGridLayout()
|
||
|
packagesLayout.addWidget(nameLabel, 0, 0)
|
||
|
packagesLayout.addWidget(nameEdit, 0, 1)
|
||
|
packagesLayout.addWidget(dateLabel, 1, 0)
|
||
|
packagesLayout.addWidget(dateEdit, 1, 1)
|
||
|
packagesLayout.addWidget(releasesCheckBox, 2, 0)
|
||
|
packagesLayout.addWidget(upgradesCheckBox, 3, 0)
|
||
|
packagesLayout.addWidget(hitsSpinBox, 4, 0, 1, 2)
|
||
|
packagesGroup.setLayout(packagesLayout)
|
||
|
|
||
|
mainLayout = QVBoxLayout()
|
||
|
mainLayout.addWidget(packagesGroup)
|
||
|
mainLayout.addSpacing(12)
|
||
|
mainLayout.addWidget(startQueryButton)
|
||
|
mainLayout.addStretch(1)
|
||
|
|
||
|
self.setLayout(mainLayout)
|
||
|
|
||
|
|
||
|
class ConfigDialog(QDialog):
|
||
|
def __init__(self, parent=None):
|
||
|
super(ConfigDialog, self).__init__(parent)
|
||
|
|
||
|
self.contentsWidget = QListWidget()
|
||
|
self.contentsWidget.setViewMode(QListView.IconMode)
|
||
|
self.contentsWidget.setIconSize(QSize(96, 84))
|
||
|
self.contentsWidget.setMovement(QListView.Static)
|
||
|
self.contentsWidget.setMaximumWidth(128)
|
||
|
self.contentsWidget.setSpacing(12)
|
||
|
|
||
|
self.pagesWidget = QStackedWidget()
|
||
|
self.pagesWidget.addWidget(ConfigurationPage())
|
||
|
self.pagesWidget.addWidget(UpdatePage())
|
||
|
self.pagesWidget.addWidget(QueryPage())
|
||
|
|
||
|
closeButton = QPushButton("Close")
|
||
|
|
||
|
self.createIcons()
|
||
|
self.contentsWidget.setCurrentRow(0)
|
||
|
|
||
|
closeButton.clicked.connect(self.close)
|
||
|
|
||
|
horizontalLayout = QHBoxLayout()
|
||
|
horizontalLayout.addWidget(self.contentsWidget)
|
||
|
horizontalLayout.addWidget(self.pagesWidget, 1)
|
||
|
|
||
|
buttonsLayout = QHBoxLayout()
|
||
|
buttonsLayout.addStretch(1)
|
||
|
buttonsLayout.addWidget(closeButton)
|
||
|
|
||
|
mainLayout = QVBoxLayout()
|
||
|
mainLayout.addLayout(horizontalLayout)
|
||
|
mainLayout.addStretch(1)
|
||
|
mainLayout.addSpacing(12)
|
||
|
mainLayout.addLayout(buttonsLayout)
|
||
|
|
||
|
self.setLayout(mainLayout)
|
||
|
|
||
|
self.setWindowTitle("Config Dialog")
|
||
|
|
||
|
def changePage(self, current, previous):
|
||
|
if not current:
|
||
|
current = previous
|
||
|
|
||
|
self.pagesWidget.setCurrentIndex(self.contentsWidget.row(current))
|
||
|
|
||
|
def createIcons(self):
|
||
|
configButton = QListWidgetItem(self.contentsWidget)
|
||
|
configButton.setIcon(QIcon(':/images/config.png'))
|
||
|
configButton.setText("Configuration")
|
||
|
configButton.setTextAlignment(Qt.AlignHCenter)
|
||
|
configButton.setFlags(Qt.ItemIsSelectable | Qt.ItemIsEnabled)
|
||
|
|
||
|
updateButton = QListWidgetItem(self.contentsWidget)
|
||
|
updateButton.setIcon(QIcon(':/images/update.png'))
|
||
|
updateButton.setText("Update")
|
||
|
updateButton.setTextAlignment(Qt.AlignHCenter)
|
||
|
updateButton.setFlags(Qt.ItemIsSelectable | Qt.ItemIsEnabled)
|
||
|
|
||
|
queryButton = QListWidgetItem(self.contentsWidget)
|
||
|
queryButton.setIcon(QIcon(':/images/query.png'))
|
||
|
queryButton.setText("Query")
|
||
|
queryButton.setTextAlignment(Qt.AlignHCenter)
|
||
|
queryButton.setFlags(Qt.ItemIsSelectable | Qt.ItemIsEnabled)
|
||
|
|
||
|
self.contentsWidget.currentItemChanged.connect(self.changePage)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
|
||
|
import sys
|
||
|
|
||
|
app = QApplication(sys.argv)
|
||
|
dialog = ConfigDialog()
|
||
|
sys.exit(dialog.exec_())
|