Ejemplo n.º 1
0
 def _createWidgets(self, layout):
     """
     """
     from type_handler import DateTimeHandler
     widgetLength = IntHandler.getInputWidget(self)
     widgetUnits = QtGui.QComboBox(self)
     widgetUnits.addItems(
         common.DATETIME_DURATIONS if self._dataTypeHandler is DateTimeHandler else common.DATE_DURATIONS)
     widgetUnits.setSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
     layout.addWidget(widgetLength)
     layout.addWidget(widgetUnits)
     return [widgetLength, widgetUnits]
Ejemplo n.º 2
0
 def getInputWidget(cls, parentWidget):
     widget = QtGui.QComboBox(parentWidget)
     return widget