本文整理汇总了Python中PyQt5.Qt.QTimeEdit.time方法的典型用法代码示例。如果您正苦于以下问题:Python QTimeEdit.time方法的具体用法?Python QTimeEdit.time怎么用?Python QTimeEdit.time使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PyQt5.Qt.QTimeEdit
的用法示例。
在下文中一共展示了QTimeEdit.time方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: DaysOfMonth
# 需要导入模块: from PyQt5.Qt import QTimeEdit [as 别名]
# 或者: from PyQt5.Qt.QTimeEdit import time [as 别名]
class DaysOfMonth(Base):
HELP = _('''\
Download this periodical every month, on the specified days.
The download will happen as soon after the specified time as
possible on the specified days of each month. For example,
if you choose the 1st and the 15th after 9:00 AM, the
periodical will be downloaded on the 1st and 15th of every
month, as soon after 9:00 AM as possible.
''')
def __init__(self, parent=None):
Base.__init__(self, parent)
self.l1 = QLabel(_('&Days of the month:'))
self.days = QLineEdit(self)
self.days.setToolTip(
_('Comma separated list of days of the month.'
' For example: 1, 15'))
self.l1.setBuddy(self.days)
self.l2 = QLabel(_('Download &after:'))
self.time = QTimeEdit(self)
self.time.setDisplayFormat('hh:mm AP')
self.l2.setBuddy(self.time)
self.l.addWidget(self.l1, 0, 0, 1, 1)
self.l.addWidget(self.days, 0, 1, 1, 1)
self.l.addWidget(self.l2, 1, 0, 1, 1)
self.l.addWidget(self.time, 1, 1, 1, 1)
def initialize(self, typ=None, val=None):
if val is None:
val = ((1, ), 6, 0)
days_of_month, hour, minute = val
self.days.setText(', '.join(map(str, map(int, days_of_month))))
self.time.setTime(QTime(hour, minute))
@property
def schedule(self):
parts = [
x.strip() for x in unicode(self.days.text()).split(',')
if x.strip()
]
try:
days_of_month = tuple(map(int, parts))
except:
days_of_month = (1, )
if not days_of_month:
days_of_month = (1, )
t = self.time.time()
hour, minute = t.hour(), t.minute()
return 'days_of_month', (days_of_month, int(hour), int(minute))
示例2: DaysOfWeek
# 需要导入模块: from PyQt5.Qt import QTimeEdit [as 别名]
# 或者: from PyQt5.Qt.QTimeEdit import time [as 别名]
class DaysOfWeek(Base):
HELP = _('''\
Download this periodical every week on the specified days after
the specified time. For example, if you choose: Monday after
9:00 AM, then the periodical will be download every Monday as
soon after 9:00 AM as possible.
''')
def __init__(self, parent=None):
Base.__init__(self, parent)
self.days = [
QCheckBox(force_unicode(calendar.day_abbr[d]), self)
for d in xrange(7)
]
for i, cb in enumerate(self.days):
row = i % 2
col = i // 2
self.l.addWidget(cb, row, col, 1, 1)
self.time = QTimeEdit(self)
self.time.setDisplayFormat('hh:mm AP')
if canonicalize_lang(get_lang()) in {'deu', 'nds'}:
self.time.setDisplayFormat('HH:mm')
self.hl = QHBoxLayout()
self.l1 = QLabel(_('&Download after:'))
self.l1.setBuddy(self.time)
self.hl.addWidget(self.l1)
self.hl.addWidget(self.time)
self.l.addLayout(self.hl, 1, 3, 1, 1)
self.initialize()
def initialize(self, typ=None, val=None):
if typ is None:
typ = 'day/time'
val = (-1, 6, 0)
if typ == 'day/time':
val = convert_day_time_schedule(val)
days_of_week, hour, minute = val
for i, d in enumerate(self.days):
d.setChecked(i in days_of_week)
self.time.setTime(QTime(hour, minute))
@property
def schedule(self):
days_of_week = tuple(
[i for i, d in enumerate(self.days) if d.isChecked()])
t = self.time.time()
hour, minute = t.hour(), t.minute()
return 'days_of_week', (days_of_week, int(hour), int(minute))
示例3: DownQDialog
# 需要导入模块: from PyQt5.Qt import QTimeEdit [as 别名]
# 或者: from PyQt5.Qt.QTimeEdit import time [as 别名]
class DownQDialog(QDialog):
"""
Class who create Downtime QDialog for hosts/services
"""
def __init__(self, parent=None):
super(DownQDialog, self).__init__(parent)
self.setWindowTitle(_('Request a Downtime'))
self.setWindowFlags(Qt.FramelessWindowHint)
self.setStyleSheet(settings.css_style)
self.setWindowIcon(QIcon(settings.get_image('icon')))
self.setMinimumSize(360, 460)
self.setObjectName('dialog')
# Fields
self.fixed = True
self.fixed_toggle_btn = ToggleQWidgetButton()
self.duration = QTimeEdit()
self.start_time = QDateTimeEdit()
self.end_time = QDateTimeEdit()
self.comment_edit = QTextEdit()
self.offset = None
def initialize(self, item_type, item_name, comment): # pylint: disable=too-many-locals
"""
Initialize Downtime QDialog
:param item_type: type of item to acknowledge : host | service
:type item_type: str
:param item_name: name of the item to acknowledge
:type item_name: str
:param comment: the default comment of action
:type comment: str
"""
logger.debug("Create Downtime QDialog...")
# Main status_layout
center_widget(self)
main_layout = QVBoxLayout(self)
main_layout.setContentsMargins(0, 0, 0, 0)
main_layout.addWidget(get_logo_widget(self, _('Request Downtime')))
downtime_widget = QWidget()
downtime_widget.setObjectName('dialog')
downtime_layout = QGridLayout(downtime_widget)
downtime_title = QLabel(_('Request a downtime'))
downtime_title.setObjectName('itemtitle')
downtime_layout.addWidget(downtime_title, 0, 0, 1, 3)
host_label = QLabel('<b>%s:</b> %s' % (item_type.capitalize(), item_name))
downtime_layout.addWidget(host_label, 1, 0, 1, 1)
options_label = QLabel(_('Downtime options:'))
options_label.setObjectName('subtitle')
downtime_layout.addWidget(options_label, 2, 0, 1, 1)
self.fixed_toggle_btn.initialize()
self.fixed_toggle_btn.update_btn_state(self.fixed)
downtime_layout.addWidget(self.fixed_toggle_btn, 2, 1, 1, 1)
fixed_label = QLabel(_('Fixed'))
downtime_layout.addWidget(fixed_label, 2, 2, 1, 1)
fixed_info = QLabel(
_(
'If checked, downtime will start and end at the times specified'
' by the “start time” and “end time” fields.'
)
)
fixed_info.setWordWrap(True)
downtime_layout.addWidget(fixed_info, 3, 0, 1, 3)
duration_label = QLabel(_('Duration'))
duration_label.setObjectName('subtitle')
downtime_layout.addWidget(duration_label, 4, 0, 1, 1)
duration_clock = QLabel()
duration_clock.setPixmap(QPixmap(settings.get_image('time')))
downtime_layout.addWidget(duration_clock, 4, 1, 1, 1)
duration_clock.setFixedSize(16, 16)
duration_clock.setScaledContents(True)
self.duration.setTime(QTime(4, 00))
self.duration.setDisplayFormat("HH'h'mm")
downtime_layout.addWidget(self.duration, 4, 2, 1, 1)
duration_info = QLabel(
_('Sets the duration if it is a non-fixed downtime.')
)
downtime_layout.addWidget(duration_info, 5, 0, 1, 3)
date_range_label = QLabel(_('Downtime date range'))
date_range_label.setObjectName('subtitle')
downtime_layout.addWidget(date_range_label, 6, 0, 1, 1)
calendar_label = QLabel()
calendar_label.setPixmap(QPixmap(settings.get_image('calendar')))
calendar_label.setFixedSize(16, 16)
#.........这里部分代码省略.........