You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
425 B

from .base_dialog import BaseDialog
from gooey.gui.three_to_four import Classes
from gooey.gui.lang.i18n import _
class CalendarDlg(BaseDialog):
def __init__(self, parent):
super(CalendarDlg, self).__init__(parent,
pickerClass=Classes.DatePickerCtrl,
pickerGetter=lambda datepicker: datepicker.GetValue().FormatISODate(),
localizedPickerLabel=_('select_date'))