ツールバー作成
2014/12/13
Python2.7.6, pyQt4.11
QtGui.QMainWindowだとステータスバー、メニューバー、ツールバー等々が設置できる。
# -*- coding: utf-8 -*-
import sys
from PyQt4 import QtGui
def main():
app = QtGui.QApplication(sys.argv)
w = QtGui.QMainWindow()
exitAction = QtGui.QAction(QtGui.QIcon('exit24.png'), 'Exit', w)
exitAction.setShortcut('Ctrl+Q')
exitAction.triggered.connect(QtGui.qApp.quit)
toolbar = w.addToolBar('Exit')
toolbar.addAction(exitAction)
w.show()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
参考:
Menus and toolbars in PyQt4
http://zetcode.com/gui/pyqt4/menusandtoolbars/
PyQt4 のメインウィンドウの構成を把握する
http://t2y.hatenablog.jp/entry/20100917/1284652234