本文整理匯總了Python中PyQt4.QtGui.QDateEdit.setMaximumDate方法的典型用法代碼示例。如果您正苦於以下問題:Python QDateEdit.setMaximumDate方法的具體用法?Python QDateEdit.setMaximumDate怎麽用?Python QDateEdit.setMaximumDate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類PyQt4.QtGui.QDateEdit
的用法示例。
在下文中一共展示了QDateEdit.setMaximumDate方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: create_dateedit
# 需要導入模塊: from PyQt4.QtGui import QDateEdit [as 別名]
# 或者: from PyQt4.QtGui.QDateEdit import setMaximumDate [as 別名]
def create_dateedit(self, text, option, tip=None):
label = QLabel(text)
dateedit = QDateEdit()
dateedit.setDisplayFormat('dd MMM yyyy')
dateedit.setMaximumDate(QDate(2010,12,31))
dateedit.setMinimumDate(QDate(2002,01,01))
if tip is not None: dateedit.setToolTip(tip)
self.dateedits[dateedit] = option
layout = QHBoxLayout()
for subwidget in (label, dateedit):
layout.addWidget(subwidget)
layout.addStretch(1)
layout.setContentsMargins(0, 0, 0, 0)
widget = QWidget(self)
widget.setLayout(layout)
return widget
示例2: QtDateSelector
# 需要導入模塊: from PyQt4.QtGui import QDateEdit [as 別名]
# 或者: from PyQt4.QtGui.QDateEdit import setMaximumDate [as 別名]
class QtDateSelector(QtBoundedDate, ProxyDateSelector):
""" A Qt implementation of an Enaml ProxyDateSelector.
"""
#: A reference to the widget created by the proxy.
widget = Typed(QDateEdit)
# --------------------------------------------------------------------------
# Initialization API
# --------------------------------------------------------------------------
def create_widget(self):
""" Create the QDateEdit widget.
"""
self.widget = QDateEdit(self.parent_widget())
def init_widget(self):
""" Initialize the widget.
"""
super(QtDateSelector, self).init_widget()
d = self.declaration
self.set_date_format(d.date_format)
self.set_calendar_popup(d.calendar_popup)
self.widget.dateChanged.connect(self.on_date_changed)
# --------------------------------------------------------------------------
# Abstract API Implementation
# --------------------------------------------------------------------------
def get_date(self):
""" Return the current date in the control.
Returns
-------
result : date
The current control date as a date object.
"""
return self.widget.date().toPyDate()
def set_minimum(self, date):
""" Set the widget's minimum date.
Parameters
----------
date : date
The date object to use for setting the minimum date.
"""
self.widget.setMinimumDate(date)
def set_maximum(self, date):
""" Set the widget's maximum date.
Parameters
----------
date : date
The date object to use for setting the maximum date.
"""
self.widget.setMaximumDate(date)
def set_date(self, date):
""" Set the widget's current date.
Parameters
----------
date : date
The date object to use for setting the date.
"""
self._guard |= CHANGED_GUARD
try:
self.widget.setDate(date)
finally:
self._guard &= ~CHANGED_GUARD
def set_date_format(self, format):
""" Set the widget's date format.
Parameters
----------
format : str
A Python time formatting string.
"""
# XXX make sure Python's and Qt's format strings are the
# same, or convert between the two.
self.widget.setDisplayFormat(format)
def set_calendar_popup(self, popup):
""" Set whether a calendar popup is available on the widget.
Parameters
----------
popup : bool
Whether the calendar popup is enabled.
"""
#.........這裏部分代碼省略.........