国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

pyqt5——菜單和工具欄

JinB / 2192人閱讀

摘要:菜單和工具欄這個章節(jié),我們會創(chuàng)建狀態(tài)欄菜單和工具欄。是菜單欄工具欄或者快捷鍵的動作的組合。程序預(yù)覽工具欄菜單欄包含了所有的命令,工具欄就是常用的命令的集合。把工具欄展示出來。

菜單和工具欄

這個章節(jié),我們會創(chuàng)建狀態(tài)欄、菜單和工具欄。菜單是一組位于菜單欄的命令。工具欄是應(yīng)用的一些常用工具按鈕。狀態(tài)欄顯示一些狀態(tài)信息,通常在應(yīng)用的底部。

主窗口

QMainWindow提供了主窗口的功能,使用它能創(chuàng)建一些簡單的狀態(tài)欄、工具欄和菜單欄。

主窗口是下面這些窗口的合稱,所以教程在最下方。

狀態(tài)欄

狀態(tài)欄是用來顯示應(yīng)用的狀態(tài)信息的組件。

#!/usr/bin/python3
# -*- coding: utf-8 -*-

"""
ZetCode PyQt5 tutorial 

This program creates a statusbar.

Author: Jan Bodnar
Website: zetcode.com 
Last edited: August 2017
"""

import sys
from PyQt5.QtWidgets import QMainWindow, QApplication


class Example(QMainWindow):
    
    def __init__(self):
        super().__init__()
        
        self.initUI()
        
        
    def initUI(self):               
        
        self.statusBar().showMessage("Ready")
        
        self.setGeometry(300, 300, 250, 150)
        self.setWindowTitle("Statusbar")    
        self.show()


if __name__ == "__main__":
    
    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

狀態(tài)欄是由QMainWindow創(chuàng)建的。

self.statusBar().showMessage("Ready")

調(diào)用QtGui.QMainWindow類的statusBar()方法,創(chuàng)建狀態(tài)欄。第一次調(diào)用創(chuàng)建一個狀態(tài)欄,返回一個狀態(tài)欄對象。showMessage()方法在狀態(tài)欄上顯示一條信息。

程序預(yù)覽:

菜單欄

菜單欄是非常常用的。是一組命令的集合(Mac OS下狀態(tài)欄的顯示不一樣,為了得到最相似的外觀,我們增加了一句menubar.setNativeMenuBar(False))。

#!/usr/bin/python3
# -*- coding: utf-8 -*-

"""
ZetCode PyQt5 tutorial 

This program creates a menubar. The
menubar has one menu with an exit action.

Author: Jan Bodnar
Website: zetcode.com 
Last edited: January 2017
"""

import sys
from PyQt5.QtWidgets import QMainWindow, QAction, qApp, QApplication
from PyQt5.QtGui import QIcon


class Example(QMainWindow):
    
    def __init__(self):
        super().__init__()
        
        self.initUI()
        
        
    def initUI(self):               
        
        exitAct = QAction(QIcon("exit.png"), "&Exit", self)        
        exitAct.setShortcut("Ctrl+Q")
        exitAct.setStatusTip("Exit application")
        exitAct.triggered.connect(qApp.quit)

        self.statusBar()

        menubar = self.menuBar()
        fileMenu = menubar.addMenu("&File")
        fileMenu.addAction(exitAct)
        
        self.setGeometry(300, 300, 300, 200)
        self.setWindowTitle("Simple menu")    
        self.show()
        
        
if __name__ == "__main__":
    
    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

我們創(chuàng)建了只有一個命令的菜單欄,這個命令就是終止應(yīng)用。同時也創(chuàng)建了一個狀態(tài)欄。而且還能使用快捷鍵Ctrl+Q退出應(yīng)用。

exitAct = QAction(QIcon("exit.png"), "&Exit", self)        
exitAct.setShortcut("Ctrl+Q")
exitAct.setStatusTip("Exit application")

QAction是菜單欄、工具欄或者快捷鍵的動作的組合。前面兩行,我們創(chuàng)建了一個圖標(biāo)、一個exit的標(biāo)簽和一個快捷鍵組合,都執(zhí)行了一個動作。第三行,創(chuàng)建了一個狀態(tài)欄,當(dāng)鼠標(biāo)懸停在菜單欄的時候,能顯示當(dāng)前狀態(tài)。

exitAct.triggered.connect(qApp.quit)

當(dāng)執(zhí)行這個指定的動作時,就觸發(fā)了一個事件。這個事件跟QApplication的quit()行為相關(guān)聯(lián),所以這個動作就能終止這個應(yīng)用。

menubar = self.menuBar()
fileMenu = menubar.addMenu("&File")
fileMenu.addAction(exitAct)

menuBar()創(chuàng)建菜單欄。這里創(chuàng)建了一個菜單欄,并在上面添加了一個file菜單,并關(guān)聯(lián)了點(diǎn)擊退出應(yīng)用的事件。

程序預(yù)覽:

子菜單

子菜單是嵌套在菜單里面的二級或者三級等的菜單。

#!/usr/bin/python3
# -*- coding: utf-8 -*-

"""
ZetCode PyQt5 tutorial 

This program creates a submenu.

Author: Jan Bodnar
Website: zetcode.com 
Last edited: August 2017
"""

import sys
from PyQt5.QtWidgets import QMainWindow, QAction, QMenu, QApplication

class Example(QMainWindow):
    
    def __init__(self):
        super().__init__()
        
        self.initUI()
        
        
    def initUI(self):         
        
        menubar = self.menuBar()
        fileMenu = menubar.addMenu("File")
        
        impMenu = QMenu("Import", self)
        impAct = QAction("Import mail", self) 
        impMenu.addAction(impAct)
        
        newAct = QAction("New", self)        
        
        fileMenu.addAction(newAct)
        fileMenu.addMenu(impMenu)
        
        self.setGeometry(300, 300, 300, 200)
        self.setWindowTitle("Submenu")    
        self.show()
        
        
if __name__ == "__main__":
    
    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

這個例子里,有兩個子菜單,一個在file菜單下面,一個在file的import下面。

impMenu = QMenu("Import", self)

使用QMenu創(chuàng)建一個新菜單。

impAct = QAction("Import mail", self) 
impMenu.addAction(impAct)

使用addAction添加一個動作。

程序預(yù)覽:

勾選菜單

下面是一個能勾選菜單的例子

#!/usr/bin/python3
# -*- coding: utf-8 -*-

"""
ZetCode PyQt5 tutorial 

This program creates a checkable menu.

Author: Jan Bodnar
Website: zetcode.com 
Last edited: August 2017
"""

import sys
from PyQt5.QtWidgets import QMainWindow, QAction, QApplication

class Example(QMainWindow):
    
    def __init__(self):
        super().__init__()
        
        self.initUI()
        
        
    def initUI(self):         
        
        self.statusbar = self.statusBar()
        self.statusbar.showMessage("Ready")
        
        menubar = self.menuBar()
        viewMenu = menubar.addMenu("View")
        
        viewStatAct = QAction("View statusbar", self, checkable=True)
        viewStatAct.setStatusTip("View statusbar")
        viewStatAct.setChecked(True)
        viewStatAct.triggered.connect(self.toggleMenu)
        
        viewMenu.addAction(viewStatAct)
        
        self.setGeometry(300, 300, 300, 200)
        self.setWindowTitle("Check menu")    
        self.show()
        
    def toggleMenu(self, state):
        
        if state:
            self.statusbar.show()
        else:
            self.statusbar.hide()
       
        
if __name__ == "__main__":
    
    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

本例創(chuàng)建了一個行為菜單。這個行為/動作能切換狀態(tài)欄顯示或者隱藏。

viewStatAct = QAction("View statusbar", self, checkable=True)

checkable選項(xiàng)創(chuàng)建一個能選中的菜單。

viewStatAct.setChecked(True)

默認(rèn)設(shè)置為選中狀態(tài)。

def toggleMenu(self, state):
    
    if state:
        self.statusbar.show()
    else:
        self.statusbar.hide()

依據(jù)選中狀態(tài)切換狀態(tài)欄的顯示與否。
程序預(yù)覽:

右鍵菜單

右鍵菜單也叫彈出框(!?),是在某些場合下顯示的一組命令。例如,Opera瀏覽器里,網(wǎng)頁上的右鍵菜單里會有刷新,返回或者查看頁面源代碼。如果在工具欄上右鍵,會得到一個不同的用來管理工具欄的菜單。

#!/usr/bin/python3
# -*- coding: utf-8 -*-

"""
ZetCode PyQt5 tutorial 

This program creates a context menu.

Author: Jan Bodnar
Website: zetcode.com 
Last edited: August 2017
"""

import sys
from PyQt5.QtWidgets import QMainWindow, qApp, QMenu, QApplication

class Example(QMainWindow):
    
    def __init__(self):
        super().__init__()
        
        self.initUI()
        
        
    def initUI(self):         
        
        self.setGeometry(300, 300, 300, 200)
        self.setWindowTitle("Context menu")    
        self.show()
    
    
    def contextMenuEvent(self, event):
       
           cmenu = QMenu(self)
           
           newAct = cmenu.addAction("New")
           opnAct = cmenu.addAction("Open")
           quitAct = cmenu.addAction("Quit")
           action = cmenu.exec_(self.mapToGlobal(event.pos()))
           
           if action == quitAct:
               qApp.quit()
       
        
if __name__ == "__main__":
    
    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

還是使用contextMenuEvent()方法實(shí)現(xiàn)這個菜單。

action = cmenu.exec_(self.mapToGlobal(event.pos()))

使用exec_()方法顯示菜單。從鼠標(biāo)右鍵事件對象中獲得當(dāng)前坐標(biāo)。mapToGlobal()方法把當(dāng)前組件的相對坐標(biāo)轉(zhuǎn)換為窗口(window)的絕對坐標(biāo)。

if action == quitAct:
    qApp.quit()

如果右鍵菜單里觸發(fā)了事件,也就觸發(fā)了退出事件,執(zhí)行關(guān)閉菜單行為。

程序預(yù)覽:

工具欄

菜單欄包含了所有的命令,工具欄就是常用的命令的集合。

#!/usr/bin/python3
# -*- coding: utf-8 -*-

"""
ZetCode PyQt5 tutorial 

This program creates a toolbar.
The toolbar has one action, which
terminates the application, if triggered.

Author: Jan Bodnar
Website: zetcode.com 
Last edited: August 2017
"""

import sys
from PyQt5.QtWidgets import QMainWindow, QAction, qApp, QApplication
from PyQt5.QtGui import QIcon

class Example(QMainWindow):
    
    def __init__(self):
        super().__init__()
        
        self.initUI()
        
        
    def initUI(self):               
        
        exitAct = QAction(QIcon("exit24.png"), "Exit", self)
        exitAct.setShortcut("Ctrl+Q")
        exitAct.triggered.connect(qApp.quit)
        
        self.toolbar = self.addToolBar("Exit")
        self.toolbar.addAction(exitAct)
        
        self.setGeometry(300, 300, 300, 200)
        self.setWindowTitle("Toolbar")    
        self.show()
        
        
if __name__ == "__main__":
    
    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

上面的例子中,我們創(chuàng)建了一個工具欄。這個工具欄只有一個退出應(yīng)用的動作。

exitAct = QAction(QIcon("exit24.png"), "Exit", self)
exitAct.setShortcut("Ctrl+Q")
exitAct.triggered.connect(qApp.quit)

和上面的菜單欄差不多,這里使用了一個行為對象,這個對象綁定了一個標(biāo)簽,一個圖標(biāo)和一個快捷鍵。這些行為被觸發(fā)的時候,會調(diào)用QtGui.QMainWindow的quit方法退出應(yīng)用。

self.toolbar = self.addToolBar("Exit")
self.toolbar.addAction(exitAct)

把工具欄展示出來。

程序預(yù)覽:

主窗口

主窗口就是上面三種欄目的總稱,現(xiàn)在我們把上面的三種欄在一個應(yīng)用里展示出來。

首先要自己弄個小圖標(biāo),命名為exit24.png
#!/usr/bin/python3
# -*- coding: utf-8 -*-

"""
ZetCode PyQt5 tutorial 

This program creates a skeleton of
a classic GUI application with a menubar,
toolbar, statusbar, and a central widget. 

Author: Jan Bodnar
Website: zetcode.com 
Last edited: August 2017

學(xué)習(xí)交流:923414804
"""

import sys
from PyQt5.QtWidgets import QMainWindow, QTextEdit, QAction, QApplication
from PyQt5.QtGui import QIcon


class Example(QMainWindow):
    
    def __init__(self):
        super().__init__()
        
        self.initUI()
        
        
    def initUI(self):               
        
        textEdit = QTextEdit()
        self.setCentralWidget(textEdit)

        exitAct = QAction(QIcon("exit24.png"), "Exit", self)
        exitAct.setShortcut("Ctrl+Q")
        exitAct.setStatusTip("Exit application")
        exitAct.triggered.connect(self.close)

        self.statusBar()

        menubar = self.menuBar()
        fileMenu = menubar.addMenu("&File")
        fileMenu.addAction(exitAct)

        toolbar = self.addToolBar("Exit")
        toolbar.addAction(exitAct)
        
        self.setGeometry(300, 300, 350, 250)
        self.setWindowTitle("Main window")    
        self.show()
        
        
if __name__ == "__main__":
    
    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())

上面的代碼創(chuàng)建了一個很經(jīng)典的菜單框架,有右鍵菜單,工具欄和狀態(tài)欄。

textEdit = QTextEdit()
self.setCentralWidget(textEdit)

這里創(chuàng)建了一個文本編輯區(qū)域,并把它放在QMainWindow的中間區(qū)域。這個組件或占滿所有剩余的區(qū)域。

程序預(yù)覽:

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/42972.html

相關(guān)文章

  • Python 小白的 PyQt5 項(xiàng)目實(shí)戰(zhàn)(1)安裝與環(huán)境配置

    摘要:工具可以直接使用方式安裝和的環(huán)境配置使用集成開發(fā)工具的小白,在安裝庫以后,還要對和進(jìn)行環(huán)境配置,將其集成到中。如果小白的或安裝在其他路徑下,則從對應(yīng)的目錄找到,或者在資源管理器中搜索文件找到安裝路徑。 ...

    Chao 評論0 收藏0
  • PyQt5+eric6之旅(三) - 多線程應(yīng)用 - 追加顯示

    摘要:實(shí)時追加顯示定義一個發(fā)送的信號通過類成員對象定義信號處理業(yè)務(wù)邏輯下面將輸出重定向到中實(shí)時顯示開始創(chuàng)建線程連接信號開始線程將當(dāng)前時間輸出到文本框目前遇到的問題是使用上遇到很多坑像是菜單工具欄各個按鈕之間怎么去綁定特定的槽各種報錯然后現(xiàn)在想 實(shí)時追加顯示 code from PyQt5 import QtCore, QtGui, QtWidgets from PyQt5.QtCore ...

    馬龍駒 評論0 收藏0
  • pyqt5——對話框

    摘要:這個示例有一個按鈕和一個輸入框,點(diǎn)擊按鈕顯示對話框,輸入的文本會顯示在輸入框里。把得到的字符串放到輸入框里。我們創(chuàng)建了一個有一個按鈕和一個標(biāo)簽的的對話框,我們可以使用這個功能修改字體樣式。 對話框 對話框是一個現(xiàn)代GUI應(yīng)用不可或缺的一部分。對話是兩個人之間的交流,對話框就是人與電腦之間的對話。對話框用來輸入數(shù)據(jù),修改數(shù)據(jù),修改應(yīng)用設(shè)置等等。 輸入文字 QInputDialog提供了一...

    Me_Kun 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<