1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
|
#!/usr/bin/env python
#============================================================================#
# (Re)Implementation of QDateEdit and QDateTimeEdit. These classes force the #
# use of the calendar popup. #
#----------------------------------------------------------------------------#
# Copyright (c) 2008 by Denviso GmbH, <ulrich.berning@denviso.de> #
# #
# All Rights Reserved #
# #
# Permission to use, copy, modify, and distribute this software and its #
# documentation for any purpose and without fee is hereby granted, #
# provided that the above copyright notice appear in all copies and that #
# both that copyright notice and this permission notice appear in #
# supporting documentation. #
# #
# DENVISO DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS #
# SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY #
# AND FITNESS, IN NO EVENT SHALL DENVISO BE LIABLE FOR ANY #
# SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES #
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, #
# WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER #
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE #
# OR PERFORMANCE OF THIS SOFTWARE. #
#----------------------------------------------------------------------------#
from PyQt5.QtCore import pyqtProperty, Qt
from PyQt5.QtWidgets import (QApplication, QCalendarWidget, QDateEdit,
QDateTimeEdit, QHBoxLayout, QWidget)
#============================================================================#
# PyDateEdit #
#----------------------------------------------------------------------------#
class PyDateEdit(QDateEdit):
#
# Initialize base class
# Force use of the calendar popup
# Set default values for calendar properties
#
def __init__(self, *args):
super(PyDateEdit, self).__init__(*args)
self.setCalendarPopup(True)
self.__cw = None
self.__firstDayOfWeek = Qt.Monday
self.__gridVisible = False
self.__horizontalHeaderFormat = QCalendarWidget.ShortDayNames
self.__verticalHeaderFormat = QCalendarWidget.ISOWeekNumbers
self.__navigationBarVisible = True
#
# Call event handler of base class
# Get the calendar widget, if not already done
# Set the calendar properties
#
def mousePressEvent(self, event):
super(PyDateEdit, self).mousePressEvent(event)
if not self.__cw:
self.__cw = self.findChild(QCalendarWidget)
if self.__cw:
self.__cw.setFirstDayOfWeek(self.__firstDayOfWeek)
self.__cw.setGridVisible(self.__gridVisible)
self.__cw.setHorizontalHeaderFormat(self.__horizontalHeaderFormat)
self.__cw.setVerticalHeaderFormat(self.__verticalHeaderFormat)
self.__cw.setNavigationBarVisible(self.__navigationBarVisible)
#
# Make sure, the calendarPopup property is invisible in Designer
#
def getCalendarPopup(self):
return True
calendarPopup = pyqtProperty(bool, fget=getCalendarPopup)
#
# Property firstDayOfWeek: Qt::DayOfWeek
# Get: getFirstDayOfWeek()
# Set: setFirstDayOfWeek()
# Reset: resetFirstDayOfWeek()
#
def getFirstDayOfWeek(self):
return self.__firstDayOfWeek
def setFirstDayOfWeek(self, dayOfWeek):
if dayOfWeek != self.__firstDayOfWeek:
self.__firstDayOfWeek = dayOfWeek
if self.__cw:
self.__cw.setFirstDayOfWeek(dayOfWeek)
def resetFirstDayOfWeek(self):
if self.__firstDayOfWeek != Qt.Monday:
self.__firstDayOfWeek = Qt.Monday
if self.__cw:
self.__cw.setFirstDayOfWeek(Qt.Monday)
firstDayOfWeek = pyqtProperty(Qt.DayOfWeek,
fget=getFirstDayOfWeek,
fset=setFirstDayOfWeek,
freset=resetFirstDayOfWeek)
#
# Property gridVisible: bool
# Get: isGridVisible()
# Set: setGridVisible()
# Reset: resetGridVisible()
#
def isGridVisible(self):
return self.__gridVisible
def setGridVisible(self, show):
if show != self.__gridVisible:
self.__gridVisible = show
if self.__cw:
self.__cw.setGridVisible(show)
def resetGridVisible(self):
if self.__gridVisible != False:
self.__gridVisible = False
if self.__cw:
self.__cw.setGridVisible(False)
gridVisible = pyqtProperty(bool,
fget=isGridVisible,
fset=setGridVisible,
freset=resetGridVisible)
#
# Property horizontalHeaderFormat: QCalendarWidget::HorizontalHeaderFormat
# Get: getHorizontalHeaderFormat()
# Set: setHorizontalHeaderFormat()
# Reset: resetHorizontalHeaderFormat()
#
def getHorizontalHeaderFormat(self):
return self.__horizontalHeaderFormat
def setHorizontalHeaderFormat(self, format):
if format != self.__horizontalHeaderFormat:
self.__horizontalHeaderFormat = format
if self.__cw:
self.__cw.setHorizontalHeaderFormat(format)
def resetHorizontalHeaderFormat(self):
if self.__horizontalHeaderFormat != QCalendarWidget.ShortDayNames:
self.__horizontalHeaderFormat = QCalendarWidget.ShortDayNames
if self.__cw:
self.__cw.setHorizontalHeaderFormat(QCalendarWidget.ShortDayNames)
horizontalHeaderFormat = pyqtProperty(QCalendarWidget.HorizontalHeaderFormat,
fget=getHorizontalHeaderFormat,
fset=setHorizontalHeaderFormat,
freset=resetHorizontalHeaderFormat)
#
# Property verticalHeaderFormat: QCalendarWidget::VerticalHeaderFormat
# Get: getVerticalHeaderFormat()
# Set: setVerticalHeaderFormat()
# Reset: resetVerticalHeaderFormat()
#
def getVerticalHeaderFormat(self):
return self.__verticalHeaderFormat
def setVerticalHeaderFormat(self, format):
if format != self.__verticalHeaderFormat:
self.__verticalHeaderFormat = format
if self.__cw:
self.__cw.setVerticalHeaderFormat(format)
def resetVerticalHeaderFormat(self):
if self.__verticalHeaderFormat != QCalendarWidget.ISOWeekNumbers:
self.__verticalHeaderFormat = QCalendarWidget.ISOWeekNumbers
if self.__cw:
self.__cw.setVerticalHeaderFormat(QCalendarWidget.ISOWeekNumbers)
verticalHeaderFormat = pyqtProperty(QCalendarWidget.VerticalHeaderFormat,
fget=getVerticalHeaderFormat,
fset=setVerticalHeaderFormat,
freset=resetVerticalHeaderFormat)
#
# Property navigationBarVisible: bool
# Get: isNavigationBarVisible()
# Set: setNavigationBarVisible()
# Reset: resetNavigationBarVisible()
#
def isNavigationBarVisible(self):
return self.__navigationBarVisible
def setNavigationBarVisible(self, visible):
if visible != self.__navigationBarVisible:
self.__navigationBarVisible = visible
if self.__cw:
self.__cw.setNavigationBarVisible(visible)
def resetNavigationBarVisible(self):
if self.__navigationBarVisible != True:
self.__navigationBarVisible = True
if self.__cw:
self.__cw.setNavigationBarVisible(True)
navigationBarVisible = pyqtProperty(bool,
fget=isNavigationBarVisible,
fset=setNavigationBarVisible,
freset=resetNavigationBarVisible)
#============================================================================#
# PyDateTimeEdit #
#----------------------------------------------------------------------------#
class PyDateTimeEdit(QDateTimeEdit):
#
# Initialize base class
# Force use of the calendar popup
# Set default values for calendar properties
#
def __init__(self, *args):
super(PyDateTimeEdit, self).__init__(*args)
self.setCalendarPopup(True)
self.__cw = None
self.__firstDayOfWeek = Qt.Monday
self.__gridVisible = False
self.__horizontalHeaderFormat = QCalendarWidget.ShortDayNames
self.__verticalHeaderFormat = QCalendarWidget.ISOWeekNumbers
self.__navigationBarVisible = True
#
# Call event handler of base class
# Get the calendar widget, if not already done
# Set the calendar properties
#
def mousePressEvent(self, event):
super(PyDateTimeEdit, self).mousePressEvent(event)
if not self.__cw:
self.__cw = self.findChild(QCalendarWidget)
if self.__cw:
self.__cw.setFirstDayOfWeek(self.__firstDayOfWeek)
self.__cw.setGridVisible(self.__gridVisible)
self.__cw.setHorizontalHeaderFormat(self.__horizontalHeaderFormat)
self.__cw.setVerticalHeaderFormat(self.__verticalHeaderFormat)
self.__cw.setNavigationBarVisible(self.__navigationBarVisible)
#
# Make sure, the calendarPopup property is invisible in Designer
#
def getCalendarPopup(self):
return True
calendarPopup = pyqtProperty(bool, fget=getCalendarPopup)
#
# Property firstDayOfWeek: Qt::DayOfWeek
# Get: getFirstDayOfWeek()
# Set: setFirstDayOfWeek()
# Reset: resetFirstDayOfWeek()
#
def getFirstDayOfWeek(self):
return self.__firstDayOfWeek
def setFirstDayOfWeek(self, dayOfWeek):
if dayOfWeek != self.__firstDayOfWeek:
self.__firstDayOfWeek = dayOfWeek
if self.__cw:
self.__cw.setFirstDayOfWeek(dayOfWeek)
def resetFirstDayOfWeek(self):
if self.__firstDayOfWeek != Qt.Monday:
self.__firstDayOfWeek = Qt.Monday
if self.__cw:
self.__cw.setFirstDayOfWeek(Qt.Monday)
firstDayOfWeek = pyqtProperty(Qt.DayOfWeek,
fget=getFirstDayOfWeek,
fset=setFirstDayOfWeek,
freset=resetFirstDayOfWeek)
#
# Property gridVisible: bool
# Get: isGridVisible()
# Set: setGridVisible()
# Reset: resetGridVisible()
#
def isGridVisible(self):
return self.__gridVisible
def setGridVisible(self, show):
if show != self.__gridVisible:
self.__gridVisible = show
if self.__cw:
self.__cw.setGridVisible(show)
def resetGridVisible(self):
if self.__gridVisible != False:
self.__gridVisible = False
if self.__cw:
self.__cw.setGridVisible(False)
gridVisible = pyqtProperty(bool,
fget=isGridVisible,
fset=setGridVisible,
freset=resetGridVisible)
#
# Property horizontalHeaderFormat: QCalendarWidget::HorizontalHeaderFormat
# Get: getHorizontalHeaderFormat()
# Set: setHorizontalHeaderFormat()
# Reset: resetHorizontalHeaderFormat()
#
def getHorizontalHeaderFormat(self):
return self.__horizontalHeaderFormat
def setHorizontalHeaderFormat(self, format):
if format != self.__horizontalHeaderFormat:
self.__horizontalHeaderFormat = format
if self.__cw:
self.__cw.setHorizontalHeaderFormat(format)
def resetHorizontalHeaderFormat(self):
if self.__horizontalHeaderFormat != QCalendarWidget.ShortDayNames:
self.__horizontalHeaderFormat = QCalendarWidget.ShortDayNames
if self.__cw:
self.__cw.setHorizontalHeaderFormat(QCalendarWidget.ShortDayNames)
horizontalHeaderFormat = pyqtProperty(QCalendarWidget.HorizontalHeaderFormat,
fget=getHorizontalHeaderFormat,
fset=setHorizontalHeaderFormat,
freset=resetHorizontalHeaderFormat)
#
# Property verticalHeaderFormat: QCalendarWidget::VerticalHeaderFormat
# Get: getVerticalHeaderFormat()
# Set: setVerticalHeaderFormat()
# Reset: resetVerticalHeaderFormat()
#
def getVerticalHeaderFormat(self):
return self.__verticalHeaderFormat
def setVerticalHeaderFormat(self, format):
if format != self.__verticalHeaderFormat:
self.__verticalHeaderFormat = format
if self.__cw:
self.__cw.setVerticalHeaderFormat(format)
def resetVerticalHeaderFormat(self):
if self.__verticalHeaderFormat != QCalendarWidget.ISOWeekNumbers:
self.__verticalHeaderFormat = QCalendarWidget.ISOWeekNumbers
if self.__cw:
self.__cw.setVerticalHeaderFormat(QCalendarWidget.ISOWeekNumbers)
verticalHeaderFormat = pyqtProperty(QCalendarWidget.VerticalHeaderFormat,
fget=getVerticalHeaderFormat,
fset=setVerticalHeaderFormat,
freset=resetVerticalHeaderFormat)
#
# Property navigationBarVisible: bool
# Get: isNavigationBarVisible()
# Set: setNavigationBarVisible()
# Reset: resetNavigationBarVisible()
#
def isNavigationBarVisible(self):
return self.__navigationBarVisible
def setNavigationBarVisible(self, visible):
if visible != self.__navigationBarVisible:
self.__navigationBarVisible = visible
if self.__cw:
self.__cw.setNavigationBarVisible(visible)
def resetNavigationBarVisible(self):
if self.__navigationBarVisible != True:
self.__navigationBarVisible = True
if self.__cw:
self.__cw.setNavigationBarVisible(True)
navigationBarVisible = pyqtProperty(bool,
fget=isNavigationBarVisible,
fset=setNavigationBarVisible,
freset=resetNavigationBarVisible)
if __name__ == "__main__":
import sys
app = QApplication(sys.argv)
w = QWidget()
lay = QHBoxLayout()
lay.addWidget(PyDateEdit())
lay.addWidget(PyDateTimeEdit())
w.setLayout(lay)
w.show()
sys.exit(app.exec_())
#============================================================================#
# EOF #
#----------------------------------------------------------------------------#
|