PySideSimplicissimus Module 5 Combine Japanese
- Note: この記事は PySide_Newbie_Tutorials の一部です。
日本語 English ["French":http://qt-devnet.developpez.com/tutoriels/pyside/simplissimus/4-combiner/]
組み合わせる - License, About, Close
この例では、これまでの3つの小さなスクリプトを組み合わせてプログラムを一つ作成します。プログラム名はcombineです。ソースを含む必要な資料は、以下のリンクからダウンロードできます。
http://akabaila.pcug.org.au/pyside-data/ と http://akabaila.pcug.org.au/pyside-data/combine/
まず最初に Qt Designer を使ってフォームを設計し、 combine.ui ファイルを作成します。メニューバーに File アイテムを追加し、そのサブメニューに Show GPL 、 About 、 Close を追加します。Qt Designer付属の接続ツール シグナル/スロットエディタ を使い、ドロップダウンメニューから、Sender:action_CloseとSignlal:triggered、 Receiver:MainWindowとSlot:close()を選択します。
Qtでは、クリックやアクションによって発生する シグナル に、関連付けたいアクションを接続します。シグナルの受信側は スロット と呼びます。通常、GUIの設計は付属の標準シグナルを使って行います。 triggered はこうした標準シグナルの一つです。
シグナルはスロットと接続されます。この例題ではシグナルと、プログラムを終了するMainWindowのcloseスロットを接続していますが、PySideではシグナルとPythonメソッドとの接続もできます。
フォームをcombine.uiとして保存した後、以下のようにPythonで読める形式に変換します。
<br />pyside-uic combine.ui > ui_combine.py<br />
このui_combine.pyはPythonだけでなく、人間も読解できます。以下のコードでこのプログラムの使い方を学びましょう。
<br />#!/usr/bin/env python<br /># combine.py - combination of ShowGPL, About, Close scripts
import sys<br />import platform
import PySide<br />from PySide.QtGui import QApplication, QMainWindow, QTextEdit, QPushButton, QMessageBox
''version'' = '0.0.1'
from ui_combine import Ui_MainWindow
class MainWindow(QMainWindow, Ui_MainWindow):<br /> def ''init''(self, parent=None):<br /> super(MainWindow, self).''init''(parent)<br /> self.setupUi(self)
if ''name'' == '''main''':<br /> app = QApplication(sys.argv)<br /> frame = MainWindow()<br /> frame.show()<br /> app.exec_()<br />
約15行ほどの、これから何度も使うことになるお決まりの内容です。勉強のためにプログラムを実行して動作確認をしましょう。プログラムではすべてのメニューアイテムのトリガーをテストできますが、今のところ機能しているのはCloseだけです。次のステップでは、残りのメニューアイテムのコードを追加していきます。
<br />#!/usr/bin/env python<br /># combine.py - combination of ShowGPL, About, Close scripts<br /># Copyright note omitted.
import sys<br />import platform
import PySide<br />from PySide.QtGui import QApplication, QMainWindow, QTextEdit, QPushButton, QMessageBox
''version'' = '0.0.2'<br />from ui_combine import Ui_MainWindow
class MainWindow(QMainWindow, Ui_MainWindow):<br /> def ''init''(self, parent=None):<br /> super(MainWindow, self).''init''(parent)<br /> self.setupUi(self)<br /> self.actionShow_GPL.triggered.connect(self.showGPL)<br /> self.action_About.triggered.connect(self.about)
def showGPL(self):<br /> '''Read and display GPL licence.'''<br /> self.textEdit.setText(open('COPYING.txt').read())
def about(self):<br /> '''Popup a box with about message.'''<br /> QMessageBox.about(self, "About PyQt, Platform and the like&quot;,<br /> """<b&gt; About this program </b&gt; v %s<br /> <p&gt;Copyright &copy; 2010 Joe Bloggs.<br /> All rights reserved in accordance with<br /> GPL v2 or later - NO WARRANTIES!<br /> <p&gt;This application can be used for<br /> displaying OS and platform details.<br /> <p&gt;Python %s - PySide version %s - Qt version %s on s&quot;"" (''version'', platform.python_version(), PySide.''version'', PySide.QtCore.''version'', platform.system&amp;#40;&#41;))
if ''name'' == '''main''':<br /> app = QApplication(sys.argv)<br /> frame = MainWindow()<br /> frame.show()<br /> app.exec_()<br />
about と showGPL メソッドを追加して、次の構文でシグナルと接続します。
<br /> self.actionShow_GPL.triggered.connect(self.showGPL)<br /> self.action_About.triggered.connect(self.about)<br />
これでプログラムの機能は完全になりました。やりましたね。では次の仕事にとりかかりましょう。我々のGUIはまだ見た目がぱっとしません。優れたGUIはメニューの代替手段となる、ボタンやアイコンツールバーを持っているものです。またマウスポインタがアイコン上に移動したときに、機能のヒントやMainWindowフォームのタスクバー上にメッセージを表示すれば一段と素敵になるでしょう。
以上の機能の作成が次の仕事です。
チュートリアルではこれから、アイコン、ポップアップヒント、ステータスバーヒントを備えたツールバーの作成メソッドに取り掛かります。まず必要なのはアイコンです。車輪の再発明をしないように利用可能なアイコンセットを使いましょう。無料の「タンゴのアイコンセット」を以下からダウンロードします。
http://tango.freedesktop.org/Tango_Icon_Library
これはライセンス制約のない、大規模なアイコンのコレクションです。必要とする以上のアイコンがあるので tango_select という名前の小さなライブラリを作り、必要なアイコンをまとめておくとよいでしょう。QtDesignerでcombine.uiを作ったように、テキストエディタ(windowsならNotepad, KDEならkate、Gnomeではgedit)で リソースソースファイル combine.qrcを作ります。一見、黒魔術のようなXMLですが、コピーして簡単に変更できるシンプルな形式です。では中身を見てみましょう。
<br /><!DOCTYPE RCC&gt;<RCC version="1.0&quot;><br /><qresource&gt;<br /><file alias="quit.png&quot;>select_tango/32x32/actions/system-log-out.png&lt;/file&gt;<br /><file alias="about.png&quot;>select_tango/32x32/apps/preferences-system-session.png&lt;/file&gt;<br /><file alias="showgpl.png&quot;>select_tango/32x32/apps/help-browser.png&lt;/file&gt;<br /></qresource&gt;<br /></RCC&gt;<br />
たとえば quit アクションのアイコンは、その別名である quit.png としてプログラム中で参照されます。そして実際にはタンゴコレクションの system-log-out.png アイコンが使用されます。では次にcombine.uiと同様に、combine.qrcをコンパイルします。
<br /> pyside-rcc combine.qrc <s>o qrc_combine.py<br />
qrc_combine.pyファイルは以下のようにプログラムにインポートされます。
<br />#!/usr/bin/env python<br /># combine.py</s> combination of ShowGPL, About, Close scripts
# Copyright notice removed to save space.
import sys<br />import platform
import PySide<br />from PySide.QtGui import QApplication, QMainWindow, QTextEdit, QPushButton, QMessageBox, QIcon
''version'' = '0.0.3'<br />from ui_combine import Ui_MainWindow<br />import qrc_combine
class MainWindow(QMainWindow, Ui_MainWindow):<br /> def ''init''(self, parent=None):<br /> super(MainWindow, self).''init''(parent)<br /> self.setupUi(self)<br /> self.actionShow_GPL.triggered.connect(self.showGPL)<br /> self.action_About.triggered.connect(self.about)<br /> iconToolBar = self.addToolBar("iconBar.png&quot;)<br />#——————————————————<br /># Add icons to appear in tool bar - step 1<br /> self.actionShow_GPL.setIcon(QIcon(":/showgpl.png&quot;))<br /> self.action_About.setIcon(QIcon(":/about.png&quot;))<br /> self.action_Close.setIcon(QIcon(":/quit.png&quot;))<br />#——————————————————<br /># Show a tip on the Status Bar - step 2<br /> self.actionShow_GPL.setStatusTip("Show GPL Licence&quot;)<br /> self.action_About.setStatusTip("Pop up the About dialog.")<br /> self.action_Close.setStatusTip("Close the program.")<br />#——————————————————<br /> iconToolBar.addAction(self.actionShow_GPL)<br /> iconToolBar.addAction(self.action_About)<br /> iconToolBar.addAction(self.action_Close)
def showGPL(self):<br /> '''Read and display GPL licence.'''<br /> self.textEdit.setText(open('COPYING.txt').read())
def about(self):<br /> '''Popup a box with about message.'''<br /> QMessageBox.about(self, "About PyQt, Platform and the like&quot;,<br /> """<b&gt; About this program </b&gt; v %s<br /> <p&gt;Copyright &copy; 2010 Joe Bloggs.<br /> All rights reserved in accordance with<br /> GPL v2 or later - NO WARRANTIES!<br /> <p&gt;This application can be used for<br /> displaying OS and platform details.<br /> <p&gt;Python %s - PySide version %s - Qt version %s on s&quot;"" (''version'', platform.python_version(), PySide.''version'', PySide.QtCore.''version'', platform.system&amp;#40;&#41;))
if ''name'' == '''main''':<br /> app = QApplication(sys.argv)<br /> frame = MainWindow()<br /> frame.show()<br /> app.exec_()<br />
ステップ1ではアイコン画像をアクションに追加しています。
<br />#——————————————————<br /># Add icons to appear in tool bar - step 1<br /> self.actionShow_GPL.setIcon(QIcon(":/showgpl.png&quot;))<br /> self.action_About.setIcon(QIcon(":/about.png&quot;))<br /> self.action_Close.setIcon(QIcon(":/quit.png&quot;))<br />#——————————————————<br />
同じように、ステップ2ではヒントのテキストをプログラムに追加しています。
<br />#——————————————————<br /># Show a tip on the Status Bar - step 2<br /> self.actionShow_GPL.setStatusTip("Show GPL Licence&quot;)<br /> self.action_About.setStatusTip("Pop up the About dialog.")<br /> self.action_Close.setStatusTip("Close the program.")<br />#——————————————————<br />
古くから言うように「百聞は一見に如かず」です。完成したcombine.pyのGUIの画像は、以下の外部リポジトリから表示可能です。
*
勉強のために、ステップ1とステップ2のコードの両方を削除してプログラムを実行し、動作を観察してみましょう。今度はステップ1を元に戻して再度プログラムを実行してみましょう。次にステップ2を元に戻します。ステップ1と2を削除するとGUIはアイコンのない地味な見た目になります。
*
ヒント:行を削除するには先頭にハッシュ文字を追加してコメントアウトします。必要に応じて後からハッシュ文字を削除してください
一番必要なのは 楽しむこと です!
チュートリアルのクラスで聞いた話です。ある講師が苦情を訴えに来た初年度の学生の母親に説明しました。「息子さんは、このコースを修了するのに十分な知識が足りなかっただけなんです。彼には一度Pysideを教えました。そして二度目にもです。三度目にはすべてを徹底的に教えました。それで、この私でさえPysideが分かったというのに 、息子さんはまだ分からないのですよ!」
PysideによるGUIプログラミングをよく理解できているといいんですが ー すくなくとも私は :)