aboutsummaryrefslogtreecommitdiffstats
path: root/examples/widgets/dialogs/tabdialog.py
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2017-01-18 10:04:46 +0100
committerLiang Qi <liang.qi@qt.io>2017-01-21 22:42:04 +0000
commit696f0677ea3c982344364f633845ed39b686cdb3 (patch)
tree77369646c070689d400e8642adcecca60808fae0 /examples/widgets/dialogs/tabdialog.py
parent4ca11515b6c5376269cb91a4975e8c5b71a2cdb4 (diff)
Follow the directory structure in qt5/qtbase
Change-Id: Ie1297c8bb1f6835db0573a2dc600e0ecb0e325a8 Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'examples/widgets/dialogs/tabdialog.py')
-rwxr-xr-xexamples/widgets/dialogs/tabdialog.py182
1 files changed, 182 insertions, 0 deletions
diff --git a/examples/widgets/dialogs/tabdialog.py b/examples/widgets/dialogs/tabdialog.py
new file mode 100755
index 0000000..8665724
--- /dev/null
+++ b/examples/widgets/dialogs/tabdialog.py
@@ -0,0 +1,182 @@
+#!/usr/bin/env python
+
+#############################################################################
+##
+## Copyright (C) 2004-2005 Trolltech AS. All rights reserved.
+##
+## This file is part of the example classes of the Qt Toolkit.
+##
+## This file may be used under the terms of the GNU General Public
+## License version 2.0 as published by the Free Software Foundation
+## and appearing in the file LICENSE.GPL included in the packaging of
+## this file. Please review the following information to ensure GNU
+## General Public Licensing requirements will be met:
+## http://www.trolltech.com/products/qt/opensource.html
+##
+## If you are unsure which license is appropriate for your use, please
+## review the following information:
+## http://www.trolltech.com/products/qt/licensing.html or contact the
+## sales department at sales@trolltech.com.
+##
+## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
+## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+##
+#############################################################################
+
+from PySide2 import QtCore, QtGui
+
+
+class TabDialog(QtGui.QDialog):
+ def __init__(self, fileName, parent=None):
+ super(TabDialog, self).__init__(parent)
+
+ fileInfo = QtCore.QFileInfo(fileName)
+
+ tabWidget = QtGui.QTabWidget()
+ tabWidget.addTab(GeneralTab(fileInfo), "General")
+ tabWidget.addTab(PermissionsTab(fileInfo), "Permissions")
+ tabWidget.addTab(ApplicationsTab(fileInfo), "Applications")
+
+ buttonBox = QtGui.QDialogButtonBox(QtGui.QDialogButtonBox.Ok | QtGui.QDialogButtonBox.Cancel)
+
+ buttonBox.accepted.connect(self.accept)
+ buttonBox.rejected.connect(self.reject)
+
+ mainLayout = QtGui.QVBoxLayout()
+ mainLayout.addWidget(tabWidget)
+ mainLayout.addWidget(buttonBox)
+ self.setLayout(mainLayout)
+
+ self.setWindowTitle("Tab Dialog")
+
+
+class GeneralTab(QtGui.QWidget):
+ def __init__(self, fileInfo, parent=None):
+ super(GeneralTab, self).__init__(parent)
+
+ fileNameLabel = QtGui.QLabel("File Name:")
+ fileNameEdit = QtGui.QLineEdit(fileInfo.fileName())
+
+ pathLabel = QtGui.QLabel("Path:")
+ pathValueLabel = QtGui.QLabel(fileInfo.absoluteFilePath())
+ pathValueLabel.setFrameStyle(QtGui.QFrame.Panel | QtGui.QFrame.Sunken)
+
+ sizeLabel = QtGui.QLabel("Size:")
+ size = fileInfo.size() // 1024
+ sizeValueLabel = QtGui.QLabel("%d K" % size)
+ sizeValueLabel.setFrameStyle(QtGui.QFrame.Panel | QtGui.QFrame.Sunken)
+
+ lastReadLabel = QtGui.QLabel("Last Read:")
+ lastReadValueLabel = QtGui.QLabel(fileInfo.lastRead().toString())
+ lastReadValueLabel.setFrameStyle(QtGui.QFrame.Panel | QtGui.QFrame.Sunken)
+
+ lastModLabel = QtGui.QLabel("Last Modified:")
+ lastModValueLabel = QtGui.QLabel(fileInfo.lastModified().toString())
+ lastModValueLabel.setFrameStyle(QtGui.QFrame.Panel | QtGui.QFrame.Sunken)
+
+ mainLayout = QtGui.QVBoxLayout()
+ mainLayout.addWidget(fileNameLabel)
+ mainLayout.addWidget(fileNameEdit)
+ mainLayout.addWidget(pathLabel)
+ mainLayout.addWidget(pathValueLabel)
+ mainLayout.addWidget(sizeLabel)
+ mainLayout.addWidget(sizeValueLabel)
+ mainLayout.addWidget(lastReadLabel)
+ mainLayout.addWidget(lastReadValueLabel)
+ mainLayout.addWidget(lastModLabel)
+ mainLayout.addWidget(lastModValueLabel)
+ mainLayout.addStretch(1)
+ self.setLayout(mainLayout)
+
+
+class PermissionsTab(QtGui.QWidget):
+ def __init__(self, fileInfo, parent=None):
+ super(PermissionsTab, self).__init__(parent)
+
+ permissionsGroup = QtGui.QGroupBox("Permissions")
+
+ readable = QtGui.QCheckBox("Readable")
+ if fileInfo.isReadable():
+ readable.setChecked(True)
+
+ writable = QtGui.QCheckBox("Writable")
+ if fileInfo.isWritable():
+ writable.setChecked(True)
+
+ executable = QtGui.QCheckBox("Executable")
+ if fileInfo.isExecutable():
+ executable.setChecked(True)
+
+ ownerGroup = QtGui.QGroupBox("Ownership")
+
+ ownerLabel = QtGui.QLabel("Owner")
+ ownerValueLabel = QtGui.QLabel(fileInfo.owner())
+ ownerValueLabel.setFrameStyle(QtGui.QFrame.Panel | QtGui.QFrame.Sunken)
+
+ groupLabel = QtGui.QLabel("Group")
+ groupValueLabel = QtGui.QLabel(fileInfo.group())
+ groupValueLabel.setFrameStyle(QtGui.QFrame.Panel | QtGui.QFrame.Sunken)
+
+ permissionsLayout = QtGui.QVBoxLayout()
+ permissionsLayout.addWidget(readable)
+ permissionsLayout.addWidget(writable)
+ permissionsLayout.addWidget(executable)
+ permissionsGroup.setLayout(permissionsLayout)
+
+ ownerLayout = QtGui.QVBoxLayout()
+ ownerLayout.addWidget(ownerLabel)
+ ownerLayout.addWidget(ownerValueLabel)
+ ownerLayout.addWidget(groupLabel)
+ ownerLayout.addWidget(groupValueLabel)
+ ownerGroup.setLayout(ownerLayout)
+
+ mainLayout = QtGui.QVBoxLayout()
+ mainLayout.addWidget(permissionsGroup)
+ mainLayout.addWidget(ownerGroup)
+ mainLayout.addStretch(1)
+ self.setLayout(mainLayout)
+
+
+class ApplicationsTab(QtGui.QWidget):
+ def __init__(self, fileInfo, parent=None):
+ super(ApplicationsTab, self).__init__(parent)
+
+ topLabel = QtGui.QLabel("Open with:")
+
+ applicationsListBox = QtGui.QListWidget()
+ applications = []
+
+ for i in range(1, 31):
+ applications.append("Application %d" % i)
+
+ applicationsListBox.insertItems(0, applications)
+
+ alwaysCheckBox = QtGui.QCheckBox()
+
+ if fileInfo.suffix():
+ alwaysCheckBox = QtGui.QCheckBox("Always use this application to "
+ "open files with the extension '%s'" % fileInfo.suffix())
+ else:
+ alwaysCheckBox = QtGui.QCheckBox("Always use this application to "
+ "open this type of file")
+
+ layout = QtGui.QVBoxLayout()
+ layout.addWidget(topLabel)
+ layout.addWidget(applicationsListBox)
+ layout.addWidget(alwaysCheckBox)
+ self.setLayout(layout)
+
+
+if __name__ == '__main__':
+
+ import sys
+
+ app = QtGui.QApplication(sys.argv)
+
+ if len(sys.argv) >= 2:
+ fileName = sys.argv[1]
+ else:
+ fileName = "."
+
+ tabdialog = TabDialog(fileName)
+ sys.exit(tabdialog.exec_())