PySideSimplicissimus Module 6 AlternativeCombine: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Add "cleanup" tag)
(Convert ExpressionEngine links)
Line 6: Line 6:
* '''Note:''' this article is a member of the multipart [[PySide-Newbie-Tutorials]]
* '''Note:''' this article is a member of the multipart [[PySide-Newbie-Tutorials]]


'''English''' ["French":http://qt-devnet.developpez.com/tutoriels/pyside/simplissimus/5-combinaison-alternative/] [[PySideSimplicissimus_Module_6_AlternativeCombine_Japanese|日本語]]
'''English''' [[http://qt-devnet.developpez.com/tutoriels/pyside/simplissimus/5-combinaison-alternative/ French]] [[PySideSimplicissimus_Module_6_AlternativeCombine_Japanese|日本語]]


= Alternative Combine =
= Alternative Combine =

Revision as of 15:10, 4 March 2015

This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

English [French] 日本語

Alternative Combine

We call this program combine_alter.py. Actually it does no more and no less than the combine.py program, though it does it somewhat differently - it circumvents the multiple inheritance. Though multiple inheritance is a nice Python feature, many programmers, particularly those migrating from other language may well prefer to avoid it, because Python is almost unique in its support of multiple inheritance (note that C++ does support it, but not Java, C# or other usual object-oriented languages). Though we started of with multiple inheritance, some may well prefer this or some other alternative way. By using the name of combine_alter.py we show that its difference from combine.py by appending "alter" to the name. The combine.ui and qrc_combine.py programs remain unaltered, so we simply use them without bothering to make it available from an upload. The program itself is available from the usual place

All current source code for "Close", "About", "Show Licence", all versions of "Combined", "Engineering Application" aka "truss" are stored in one repository tuts4pyside. For your convenience, please install a copy of the repository with the following command:

 git clone https://github.com/OldAl/tuts4pyside<code>
Program listing follows.
  1. !/usr/bin/env python
  2. combine_alter.py - combination of ShowGPL, About, Close scripts

import sys import platform

import PySide from PySide.QtGui import QApplication, QMainWindow, QTextEdit, QPushButton, QMessageBox, QIcon

version_ = '0.0.0' from ui_combine import Ui_MainWindow as Ui import qrc_combine

class MainWindow(QMainWindow):

def init(self, parent=None):
super(MainWindow, self).init(parent)
# Store Ui() as class variable self.ui
self.ui = Ui()
ui.setupUi(self)
ui.actionShow_GPL.triggered.connect(self.showGPL)
ui.action_About.triggered.connect(self.about)
iconToolBar = self.addToolBar("iconBar.png")
  1. ——————————————————
  2. Add icons to appear in tool bar - step 1
ui.actionShow_GPL.setIcon(QIcon(":/showgpl.png"))
ui.action_About.setIcon(QIcon(":/about.png"))
ui.action_Close.setIcon(QIcon(":/quit.png"))
  1. ——————————————————
  2. Show a tip on the Status Bar - step 2
ui.actionShow_GPL.setStatusTip("Show GPL Licence")
ui.action_About.setStatusTip("Pop up the About dialog.")
ui.action_Close.setStatusTip("Close the program.")
  1. ——————————————————
iconToolBar.addAction(ui.actionShow_GPL)
iconToolBar.addAction(ui.action_About)
iconToolBar.addAction(ui.action_Close)

def showGPL(self):

Read and display GPL licence.
self.ui.textEdit.setText(open('COPYING.txt').read())

def about(self):

Popup a box with about message.
QMessageBox.about(self, "About PyQt, Platform and the like",
""" About this program  v %s

Copyright &copy; 2010 Joe Bloggs. All rights reserved in accordance with GPL v2 or later - NO WARRANTIES!

This application can be used for displaying OS and platform details.

Python %s - PySide version %s - Qt version %s on s""" (version, platform.python_version(), PySide.version, PySide.QtCore.version, platform.system())) if name == main: app = QApplication(sys.argv) frame = MainWindow() frame.show() app.exec_() Basically, it is a matter of taste which method one uses - with multiple inheritance or without. Anyhow, it may well be easier ot adopt one or the other. Even though, it is good to have some familiarity with both methods, as one meets both when reading programs. Enjoy the slightly different presentation of this very basic program setup!