最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

python3+PyQt5+Qt Designer實現(xiàn)擴展對話框

 更新時間:2018年04月20日 11:49:20   作者:basisworker  
這篇文章主要為大家詳細介紹了python3+PyQt5+Qt Designer實現(xiàn)擴展對話框,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文是對《Python Qt GUI快速編程》的第9章的擴展對話框例子Find and replace用Python3+PyQt5+Qt Designer進行改寫。

第一部分無借用Qt Designer,完全用代碼實現(xiàn)。
第二部分則借用Qt Designer,快速實現(xiàn)。

第一部分:

import sys
from PyQt5.QtCore import Qt,pyqtSignal
from PyQt5.QtWidgets import (QApplication, QCheckBox, QDialog, QFrame,
  QGridLayout, QHBoxLayout, QLabel, QLayout, QLineEdit,
  QPushButton, QVBoxLayout)



class FindAndReplaceDlg(QDialog):
 find = pyqtSignal(str,bool,bool,bool,bool,bool)
 replace = pyqtSignal(str,str,bool,bool,bool,bool,bool)  

 def __init__(self, parent=None):
  super(FindAndReplaceDlg, self).__init__(parent)

  findLabel = QLabel("Find &what:")
  self.findLineEdit = QLineEdit()
  findLabel.setBuddy(self.findLineEdit)
  replaceLabel = QLabel("Replace w&ith:")
  self.replaceLineEdit = QLineEdit()
  replaceLabel.setBuddy(self.replaceLineEdit)
  self.caseCheckBox = QCheckBox("&Case sensitive")
  self.wholeCheckBox = QCheckBox("Wh&ole words")
  self.wholeCheckBox.setChecked(True)
  self.moreFrame = QFrame()
  self.moreFrame.setFrameStyle(QFrame.StyledPanel|QFrame.Sunken)
  self.backwardsCheckBox = QCheckBox("Search &Backwards")
  self.regexCheckBox = QCheckBox("Regular E&xpression")
  self.ignoreNotesCheckBox = QCheckBox("Ignore foot&notes "
             "and endnotes")
  line = QFrame()
  line.setFrameStyle(QFrame.VLine|QFrame.Sunken)
  self.findButton = QPushButton("&Find")
  self.replaceButton = QPushButton("&Replace")
  closeButton = QPushButton("Close")
  self.moreButton = QPushButton("&More")
  self.moreButton.setCheckable(True)


  gridLayout = QGridLayout()
  gridLayout.addWidget(findLabel, 0, 0)
  gridLayout.addWidget(self.findLineEdit, 0, 1)
  gridLayout.addWidget(replaceLabel, 1, 0)
  gridLayout.addWidget(self.replaceLineEdit, 1, 1)
  frameLayout = QVBoxLayout()
  frameLayout.addWidget(self.backwardsCheckBox)
  frameLayout.addWidget(self.regexCheckBox)
  frameLayout.addWidget(self.ignoreNotesCheckBox)
  self.moreFrame.setLayout(frameLayout)
  leftLayout = QVBoxLayout()
  leftLayout.addLayout(gridLayout)
  leftLayout.addWidget(self.caseCheckBox)
  leftLayout.addWidget(self.wholeCheckBox)
  leftLayout.addWidget(self.moreFrame)
  buttonLayout = QVBoxLayout()
  buttonLayout.addWidget(self.findButton)
  buttonLayout.addWidget(self.replaceButton)
  buttonLayout.addWidget(closeButton)
  buttonLayout.addWidget(self.moreButton)
  buttonLayout.addStretch()
  mainLayout = QHBoxLayout()
  mainLayout.addLayout(leftLayout)
  mainLayout.addWidget(line)
  mainLayout.addLayout(buttonLayout)
  self.setLayout(mainLayout)

  self.moreFrame.hide()
  mainLayout.setSizeConstraint(QLayout.SetFixedSize)

  self.moreButton.toggled[bool].connect(self.setvisible)


  self.findLineEdit.textEdited.connect(self.updateUi)
  self.findButton.clicked.connect(self.findClicked)
  self.replaceButton.clicked.connect(self.replaceClicked)

  self.updateUi()
  self.setWindowTitle("Find and Replace")

 def setvisible(self,YN):
  self.moreFrame.setVisible(YN)


 def findClicked(self):
  self.find.emit(self.findLineEdit.text(),
    self.caseCheckBox.isChecked(),
    self.wholeCheckBox.isChecked(),
    self.backwardsCheckBox.isChecked(),
    self.regexCheckBox.isChecked(),
    self.ignoreNotesCheckBox.isChecked())


 def replaceClicked(self):
  self.replace.emit(self.findLineEdit.text(),
    self.replaceLineEdit.text(),
    self.caseCheckBox.isChecked(),
    self.wholeCheckBox.isChecked(),
    self.backwardsCheckBox.isChecked(),
    self.regexCheckBox.isChecked(),
    self.ignoreNotesCheckBox.isChecked())


 def updateUi(self):
  enable = self.findLineEdit.text()
  self.findButton.setEnabled(bool(enable))
  self.replaceButton.setEnabled(bool(enable))


if __name__ == "__main__":

 def find(what, *args):
  print("Find {0} {1}".format(what, [x for x in args]))

 def replace(old, new, *args):
  print("Replace {0} with {1} {2}".format(
    old, new, [x for x in args]))

 app = QApplication(sys.argv)
 form = FindAndReplaceDlg()
 form.find.connect(find)
 form.replace.connect(replace)  
 form.show()
 app.exec_()

第二部分:

/home/yrd/eric_workspace/chap09/findandreplacedlg/Ui_findandreplacedlg.py

# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file '/home/yrd/eric_workspace/chap09/findandreplacedlg/findandreplacedlg.ui'
#
# Created by: PyQt5 UI code generator 5.7
#
# WARNING! All changes made in this file will be lost!

from PyQt5 import QtCore, QtGui, QtWidgets

class Ui_FindAndReplaceDlg(object):
 def setupUi(self, FindAndReplaceDlg):
  FindAndReplaceDlg.setObjectName("FindAndReplaceDlg")
  FindAndReplaceDlg.resize(355, 274)
  self.mainlayout = QtWidgets.QHBoxLayout(FindAndReplaceDlg)
  self.mainlayout.setSizeConstraint(QtWidgets.QLayout.SetFixedSize)
  self.mainlayout.setContentsMargins(9, 9, 9, 9)
  self.mainlayout.setSpacing(6)
  self.mainlayout.setObjectName("mainlayout")
  self.vboxlayout = QtWidgets.QVBoxLayout()
  self.vboxlayout.setContentsMargins(0, 0, 0, 0)
  self.vboxlayout.setSpacing(6)
  self.vboxlayout.setObjectName("vboxlayout")
  self.gridlayout = QtWidgets.QGridLayout()
  self.gridlayout.setContentsMargins(0, 0, 0, 0)
  self.gridlayout.setSpacing(6)
  self.gridlayout.setObjectName("gridlayout")
  self.replaceLineEdit = QtWidgets.QLineEdit(FindAndReplaceDlg)
  self.replaceLineEdit.setObjectName("replaceLineEdit")
  self.gridlayout.addWidget(self.replaceLineEdit, 1, 1, 1, 1)
  self.findLineEdit = QtWidgets.QLineEdit(FindAndReplaceDlg)
  self.findLineEdit.setObjectName("findLineEdit")
  self.gridlayout.addWidget(self.findLineEdit, 0, 1, 1, 1)
  self.label_2 = QtWidgets.QLabel(FindAndReplaceDlg)
  self.label_2.setObjectName("label_2")
  self.gridlayout.addWidget(self.label_2, 1, 0, 1, 1)
  self.label = QtWidgets.QLabel(FindAndReplaceDlg)
  self.label.setObjectName("label")
  self.gridlayout.addWidget(self.label, 0, 0, 1, 1)
  self.vboxlayout.addLayout(self.gridlayout)
  self.vboxlayout1 = QtWidgets.QVBoxLayout()
  self.vboxlayout1.setContentsMargins(0, 0, 0, 0)
  self.vboxlayout1.setSpacing(6)
  self.vboxlayout1.setObjectName("vboxlayout1")
  self.caseCheckBox = QtWidgets.QCheckBox(FindAndReplaceDlg)
  self.caseCheckBox.setObjectName("caseCheckBox")
  self.vboxlayout1.addWidget(self.caseCheckBox)
  self.wholeCheckBox = QtWidgets.QCheckBox(FindAndReplaceDlg)
  self.wholeCheckBox.setChecked(True)
  self.wholeCheckBox.setObjectName("wholeCheckBox")
  self.vboxlayout1.addWidget(self.wholeCheckBox)
  self.vboxlayout.addLayout(self.vboxlayout1)
  spacerItem = QtWidgets.QSpacerItem(231, 16, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
  self.vboxlayout.addItem(spacerItem)
  self.moreFrame = QtWidgets.QFrame(FindAndReplaceDlg)
  self.moreFrame.setFrameShape(QtWidgets.QFrame.StyledPanel)
  self.moreFrame.setFrameShadow(QtWidgets.QFrame.Raised)
  self.moreFrame.setObjectName("moreFrame")
  self.vboxlayout2 = QtWidgets.QVBoxLayout(self.moreFrame)
  self.vboxlayout2.setContentsMargins(9, 9, 9, 9)
  self.vboxlayout2.setSpacing(6)
  self.vboxlayout2.setObjectName("vboxlayout2")
  self.backwardsCheckBox = QtWidgets.QCheckBox(self.moreFrame)
  self.backwardsCheckBox.setObjectName("backwardsCheckBox")
  self.vboxlayout2.addWidget(self.backwardsCheckBox)
  self.regexCheckBox = QtWidgets.QCheckBox(self.moreFrame)
  self.regexCheckBox.setObjectName("regexCheckBox")
  self.vboxlayout2.addWidget(self.regexCheckBox)
  self.ignoreNotesCheckBox = QtWidgets.QCheckBox(self.moreFrame)
  self.ignoreNotesCheckBox.setObjectName("ignoreNotesCheckBox")
  self.vboxlayout2.addWidget(self.ignoreNotesCheckBox)
  self.vboxlayout.addWidget(self.moreFrame)
  self.mainlayout.addLayout(self.vboxlayout)
  self.line = QtWidgets.QFrame(FindAndReplaceDlg)
  self.line.setFrameShape(QtWidgets.QFrame.VLine)
  self.line.setFrameShadow(QtWidgets.QFrame.Sunken)
  self.line.setObjectName("line")
  self.mainlayout.addWidget(self.line)
  self.vboxlayout3 = QtWidgets.QVBoxLayout()
  self.vboxlayout3.setContentsMargins(0, 0, 0, 0)
  self.vboxlayout3.setSpacing(6)
  self.vboxlayout3.setObjectName("vboxlayout3")
  self.findButton = QtWidgets.QPushButton(FindAndReplaceDlg)
  self.findButton.setFocusPolicy(QtCore.Qt.NoFocus)
  self.findButton.setObjectName("findButton")
  self.vboxlayout3.addWidget(self.findButton)
  self.replaceButton = QtWidgets.QPushButton(FindAndReplaceDlg)
  self.replaceButton.setFocusPolicy(QtCore.Qt.NoFocus)
  self.replaceButton.setObjectName("replaceButton")
  self.vboxlayout3.addWidget(self.replaceButton)
  self.closeButton = QtWidgets.QPushButton(FindAndReplaceDlg)
  self.closeButton.setFocusPolicy(QtCore.Qt.NoFocus)
  self.closeButton.setObjectName("closeButton")
  self.vboxlayout3.addWidget(self.closeButton)
  self.moreButton = QtWidgets.QPushButton(FindAndReplaceDlg)
  self.moreButton.setFocusPolicy(QtCore.Qt.NoFocus)
  self.moreButton.setCheckable(True)
  self.moreButton.setObjectName("moreButton")
  self.vboxlayout3.addWidget(self.moreButton)
  spacerItem1 = QtWidgets.QSpacerItem(21, 16, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
  self.vboxlayout3.addItem(spacerItem1)
  self.mainlayout.addLayout(self.vboxlayout3)
  self.label_2.setBuddy(self.replaceLineEdit)
  self.label.setBuddy(self.findLineEdit)

  self.retranslateUi(FindAndReplaceDlg)
  self.closeButton.clicked.connect(FindAndReplaceDlg.reject)
  self.moreButton.toggled['bool'].connect(self.moreFrame.setVisible)
  QtCore.QMetaObject.connectSlotsByName(FindAndReplaceDlg)
  FindAndReplaceDlg.setTabOrder(self.findLineEdit, self.replaceLineEdit)
  FindAndReplaceDlg.setTabOrder(self.replaceLineEdit, self.caseCheckBox)
  FindAndReplaceDlg.setTabOrder(self.caseCheckBox, self.wholeCheckBox)
  FindAndReplaceDlg.setTabOrder(self.wholeCheckBox, self.backwardsCheckBox)
  FindAndReplaceDlg.setTabOrder(self.backwardsCheckBox, self.regexCheckBox)
  FindAndReplaceDlg.setTabOrder(self.regexCheckBox, self.ignoreNotesCheckBox)

 def retranslateUi(self, FindAndReplaceDlg):
  _translate = QtCore.QCoreApplication.translate
  FindAndReplaceDlg.setWindowTitle(_translate("FindAndReplaceDlg", "Find and Replace"))
  self.label_2.setText(_translate("FindAndReplaceDlg", "Replace w&ith:"))
  self.label.setText(_translate("FindAndReplaceDlg", "Find &what:"))
  self.caseCheckBox.setText(_translate("FindAndReplaceDlg", "&Case sensitive"))
  self.wholeCheckBox.setText(_translate("FindAndReplaceDlg", "Wh&ole words"))
  self.backwardsCheckBox.setText(_translate("FindAndReplaceDlg", "Search &Backwards"))
  self.regexCheckBox.setText(_translate("FindAndReplaceDlg", "Regular E&xpression"))
  self.ignoreNotesCheckBox.setText(_translate("FindAndReplaceDlg", "Ignore foot&notes and endnotes"))
  self.findButton.setText(_translate("FindAndReplaceDlg", "&Find"))
  self.replaceButton.setText(_translate("FindAndReplaceDlg", "&Replace"))
  self.closeButton.setText(_translate("FindAndReplaceDlg", "Close"))
  self.moreButton.setText(_translate("FindAndReplaceDlg", "&More"))

/home/yrd/eric_workspace/chap09/findandreplacedlg/findandreplacedlg.py

# -*- coding: utf-8 -*-

"""
Module implementing FindAndReplaceDlg.
"""

from PyQt5.QtCore import pyqtSlot,pyqtSignal
from PyQt5.QtWidgets import QDialog,QApplication

from Ui_findandreplacedlg import Ui_FindAndReplaceDlg


class FindAndReplaceDlg(QDialog, Ui_FindAndReplaceDlg):
 """
 Class documentation goes here.
 """
 find = pyqtSignal(str,bool,bool,bool,bool,bool)
 replace = pyqtSignal(str,str,bool,bool,bool,bool,bool)  
 def __init__(self, parent=None):
  """
  Constructor

  @param parent reference to the parent widget
  @type QWidget
  """
  super(FindAndReplaceDlg, self).__init__(parent)
  self.setupUi(self)
  self.moreFrame.hide()
  #self.layout().setSizeConstraint(QLayout.SetFixedSize)
  self.updateUi()  

 @pyqtSlot(str)
 def on_findLineEdit_textEdited(self, text):
  """
  Slot documentation goes here.

  @param p0 DESCRIPTION
  @type str
  """
  # TODO: not implemented yet
  self.updateUi()

 @pyqtSlot()
 def on_findButton_clicked(self):
  self.find.emit(self.findLineEdit.text(),
      self.caseCheckBox.isChecked(),
      self.wholeCheckBox.isChecked(),
      self.backwardsCheckBox.isChecked(),
      self.regexCheckBox.isChecked(),
      self.ignoreNotesCheckBox.isChecked())  


 @pyqtSlot()
 def on_replaceButton_clicked(self):
  self.replace.emit(self.findLineEdit.text(),
       self.replaceLineEdit.text(),
       self.caseCheckBox.isChecked(),
       self.wholeCheckBox.isChecked(),
       self.backwardsCheckBox.isChecked(),
       self.regexCheckBox.isChecked(),
       self.ignoreNotesCheckBox.isChecked())

 def updateUi(self):
  enable = self.findLineEdit.text()
  self.findButton.setEnabled(bool(enable))
  self.replaceButton.setEnabled(bool(enable))

if __name__ == "__main__":
 import sys

 def find(what, *args):
  print("Find {0} {1}".format(what, [x for x in args]))

 def replace(old, new, *args):
  print("Replace {0} with {1} {2}".format(
    old, new, [x for x in args]))

 app = QApplication(sys.argv)
 form = FindAndReplaceDlg()
 form.find.connect(find)
 form.replace.connect(replace)
 form.show()
 app.exec_()

運行結(jié)果:

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Python調(diào)用pyttsx3實現(xiàn)離線文字轉(zhuǎn)語音的方式

    Python調(diào)用pyttsx3實現(xiàn)離線文字轉(zhuǎn)語音的方式

    pyttsx3是 Python 中的文本到語音的離線轉(zhuǎn)換庫,本文給大家介紹Python調(diào)用pyttsx3實現(xiàn)離線文字轉(zhuǎn)語音的方式,感興趣的朋友一起看看吧
    2024-03-03
  • Python之OptionParser模塊使用詳解

    Python之OptionParser模塊使用詳解

    這篇文章主要為大家詳細介紹了Python之OptionParser模塊使用,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下,希望能夠給你帶來幫助
    2022-02-02
  • python hmac模塊驗證客戶端的合法性

    python hmac模塊驗證客戶端的合法性

    這篇文章主要介紹了python hmac模塊驗證客戶端的合法性,幫助大家更好的理解和使用python,感興趣的朋友可以了解下
    2020-11-11
  • Python OpenCV學(xué)習之特征點檢測與匹配詳解

    Python OpenCV學(xué)習之特征點檢測與匹配詳解

    提取圖像的特征點是圖像領(lǐng)域中的關(guān)鍵任務(wù),不管在傳統(tǒng)還是在深度學(xué)習的領(lǐng)域中,特征代表著圖像的信息,對于分類、檢測任務(wù)都是至關(guān)重要的。這篇文章主要為大家詳細介紹了OpenCV特征點檢測與匹配,需要的可以參考一下
    2022-01-01
  • Python操作excel的方法總結(jié)(xlrd、xlwt、openpyxl)

    Python操作excel的方法總結(jié)(xlrd、xlwt、openpyxl)

    這篇文章主要給大家介紹了關(guān)于Python操作excel的一些方法,其中包括xlrd、xlwt、openpyxl的相關(guān)資料,文中通過示例代碼介紹的非常詳細,對大家學(xué)習或者使用Python具有一定的參考學(xué)習價值,需要的朋友們下面來一起學(xué)習學(xué)習吧
    2019-09-09
  • pandas中刪除列的幾種方法

    pandas中刪除列的幾種方法

    在pandas中有多種方法可以刪除列,本文主要介紹了pandas中刪除列的幾種方法,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習或者工作具有一定的參考學(xué)習價值,需要的朋友們下面隨著小編來一起學(xué)習學(xué)習吧
    2024-07-07
  • python格式化輸出保留2位小數(shù)的實現(xiàn)方法

    python格式化輸出保留2位小數(shù)的實現(xiàn)方法

    這篇文章主要介紹了python格式化輸出保留2位小數(shù)的實現(xiàn)方法,需要的朋友可以參考下
    2019-07-07
  • Python中Requests-get方法的使用

    Python中Requests-get方法的使用

    本文主要介紹了Python中Requests-get方法的使用,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習或者工作具有一定的參考學(xué)習價值,需要的朋友們下面隨著小編來一起學(xué)習學(xué)習吧
    2023-05-05
  • python如何終止死循環(huán)和開啟死循環(huán)

    python如何終止死循環(huán)和開啟死循環(huán)

    這篇文章主要介紹了python如何終止死循環(huán)和開啟死循環(huán)問題,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教
    2024-05-05
  • Python try except finally資源回收的實現(xiàn)

    Python try except finally資源回收的實現(xiàn)

    這篇文章主要介紹了Python try except finally資源回收的實現(xiàn),文中通過示例代碼介紹的非常詳細,對大家的學(xué)習或者工作具有一定的參考學(xué)習價值,需要的朋友們下面隨著小編來一起學(xué)習學(xué)習吧
    2021-01-01

最新評論

潍坊市| 涿鹿县| 秦安县| 宁河县| 贵定县| 防城港市| 宣城市| 墨脱县| 凭祥市| 廊坊市| 靖宇县| 那坡县| 辉南县| 余江县| 永寿县| 绿春县| 巴中市| 汉源县| 凤凰县| 普格县| 扶绥县| 荔波县| 汉寿县| 宜春市| 长汀县| 宁武县| 庆安县| 浦东新区| 定州市| 廊坊市| 新乡县| 航空| 四子王旗| 中卫市| 临江市| 宁津县| 井研县| 南召县| 延边| 葫芦岛市| 固始县|