70 lines
2.5 KiB
Python
70 lines
2.5 KiB
Python
# coding:utf-8
|
|
from PyQt5.QtCore import Qt
|
|
from qfluentwidgets import DatePicker, TimePicker, AMTimePicker, ZhDatePicker, CalendarPicker
|
|
|
|
from .gallery_interface import GalleryInterface
|
|
from ..common.translator import Translator
|
|
|
|
|
|
class DateTimeInterface(GalleryInterface):
|
|
""" Date time interface """
|
|
|
|
def __init__(self, parent=None):
|
|
t = Translator()
|
|
super().__init__(
|
|
title=t.dateTime,
|
|
subtitle='qfluentwidgets.components.time_picker',
|
|
parent=parent
|
|
)
|
|
self.setObjectName('dateTimeInterface')
|
|
|
|
# calendar picker
|
|
self.addExampleCard(
|
|
title=self.tr('A simple CalendarPicker'),
|
|
widget=CalendarPicker(self),
|
|
sourcePath='https://github.com/zhiyiYo/PyQt-Fluent-Widgets/blob/master/examples/date_time/calendar_picker/demo.py'
|
|
)
|
|
|
|
w = CalendarPicker(self)
|
|
w.setDateFormat(Qt.TextDate)
|
|
self.addExampleCard(
|
|
title=self.tr('A CalendarPicker in another format'),
|
|
widget=w,
|
|
sourcePath='https://github.com/zhiyiYo/PyQt-Fluent-Widgets/blob/master/examples/date_time/calendar_picker/demo.py'
|
|
)
|
|
|
|
# date picker
|
|
self.addExampleCard(
|
|
title=self.tr('A simple DatePicker'),
|
|
widget=DatePicker(self),
|
|
sourcePath='https://github.com/zhiyiYo/PyQt-Fluent-Widgets/blob/master/examples/date_time/time_picker/demo.py'
|
|
)
|
|
|
|
self.addExampleCard(
|
|
title=self.tr('A DatePicker in another format'),
|
|
widget=ZhDatePicker(self),
|
|
sourcePath='https://github.com/zhiyiYo/PyQt-Fluent-Widgets/blob/master/examples/date_time/time_picker/demo.py'
|
|
)
|
|
|
|
# AM/PM time picker
|
|
self.addExampleCard(
|
|
title=self.tr('A simple TimePicker'),
|
|
widget=AMTimePicker(self),
|
|
sourcePath='https://github.com/zhiyiYo/PyQt-Fluent-Widgets/blob/master/examples/date_time/time_picker/demo.py'
|
|
)
|
|
|
|
# 24 hours time picker
|
|
self.addExampleCard(
|
|
title=self.tr('A TimePicker using a 24-hour clock'),
|
|
widget=TimePicker(self),
|
|
sourcePath='https://github.com/zhiyiYo/PyQt-Fluent-Widgets/blob/master/examples/date_time/time_picker/demo.py'
|
|
)
|
|
|
|
# 24 hours time picker
|
|
self.addExampleCard(
|
|
title=self.tr('A TimePicker with seconds column'),
|
|
widget=TimePicker(self, True),
|
|
sourcePath='https://github.com/zhiyiYo/PyQt-Fluent-Widgets/blob/master/examples/date_time/time_picker/demo.py'
|
|
)
|
|
|