【问题标题】:Signal when QCalendarWidget popup opens?QCalendarWidget 弹出窗口打开时发出信号?
【发布时间】:2019-09-05 06:45:05
【问题描述】:

这是绘制一些日期的单元格的函数,这些日期之前计算并保存在“日期”列表中,该函数工作正常,但我想在单击 QDateEdit 时调用该函数(显示弹出日历时)

def init_gui(self):
    # Set signals of widgets
    self.dockwidget.date_to.calendarWidget().clicked.connect(self.paint_cell) # !! the signal I'm looking for
def paint_cell(self):    
    #QDateEdit / QCalendarWidget Highlight Dates
    keyword_format = QTextCharFormat()
    keyword_format.setBackground(Qt.gray)
    for date in dates:
        self.dockwidget.date_from.calendarWidget().setDateTextFormat(QDate.fromString(date,"yyyy-MM-dd") ,keyword_format)

self.dockwidget.date_from() #QDateEdit

self.dockwidget.date_from.calendarWidget() # QCalendarWidget

我知道有信号,但是当点击 QDate 时它们都在工作: self.dockwidget.date_to.calendarWidget().activated.connect(self.paint_cell) self.dockwidget.date_to.calendarWidget().clicked.connect(self.paint_cell) self.dockwidget.date_to.calendarWidget().selectionChanged.connect(self.paint_cell)

但是当显示弹出窗口时,我必须在这些信号之前绘制单元格。

有人知道那个信号是什么吗?

注意:代码将成为 QGis 插件的一部分

【问题讨论】:

    标签: python pyqt pyqt5 qcalendarwidget


    【解决方案1】:

    如果要在显示calendarWidget之前设置,则不必使用任何信号,只需在构造函数中调用paint_cell即可。

    # constructor
    self.paint_cell()
    self.dockwidget.date_to.calendarWidget().activated.connect(self.paint_cell)
    # ...
    

    更新:

    在这种情况下没有默认信号,所以相信它,您可以使用事件过滤器来监控 Event.Show 事件,然后发出信号。

    from PyQt5 import QtCore, QtWidgets
    
    
    class DateEdit(QtWidgets.QDateEdit):
        popupSignal = QtCore.pyqtSignal()
    
        def __init__(self, parent=None):
            super(DateEdit, self).__init__(parent)
            self.setCalendarPopup(True)
            self.calendarWidget().installEventFilter(self)
    
        def eventFilter(self, obj, event):
            if self.calendarWidget() is obj and event.type() == QtCore.QEvent.Show:
                self.popupSignal.emit()
            return super(DateEdit, self).eventFilter(obj, event)
    
    
    if __name__ == "__main__":
        import sys
    
        app = QtWidgets.QApplication(sys.argv)
        w = DateEdit()
        w.popupSignal.connect(lambda: print("popup"))
        w.show()
        sys.exit(app.exec_())
    

    【讨论】:

    • 我需要设置信号,因为每次弹出日历时,都会标记不同的日期(根据画布,图层,bbox的当前状态计算......)注意:代码将是一部分QGis插件
    • 我试图避免事件过滤器,但最后你的代码和一些修改它现在正在工作:) 谢谢@eyllanesc
    【解决方案2】:

    根据@eyllanesc 帖子的提示,我现在的工作代码是:

    class Project(QDockWidget):
        """ QGIS Plugin Implementation. """
        popupSignal = QtCore.pyqtSignal()
    
        def __init__(self, iface):
            """ Constructor.
    
            :param iface: An interface instance that will be passed to this class
            which provides the hook by which you can manipulate the QGIS
            application at run time.
            :type iface: QgisInterface
            """
            QDockWidget.__init__(self)
    
            # Save reference to the QGIS interface
            self.iface = iface
    
            # initialize plugin directory
            self.plugin_dir = os.path.dirname(__file__)
    
            ...
    
        def eventFilter(self, obj, event):
            if self.dockwidget.date_to.calendarWidget() is obj and event.type() == QtCore.QEvent.Show:
                self.popupSignal.emit()
            return super(Project, self).eventFilter(obj, event)
    
        ....
    
        def run(self):
           """ Run method that loads and starts the plugin """
    
               self.dockwidget.date_to.calendarWidget().installEventFilter(self)
               self.popupSignal.connect(self.paint_cell)
    
    
        def paint_cell(self):
            #QDateEdit / QCalendarWidget Highlight Dates
            keyword_format = QTextCharFormat()
            keyword_format.setBackground(Qt.gray)
            for date in dates:
                 self.dockwidget.date_from.calendarWidget().setDateTextFormat(QDate.fromString(date, "yyyy-MM-dd"), keyword_format)
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2023-03-20
      相关资源
      最近更新 更多