Tue, 10 Dec 2024 15:49:02 +0100
Updated copyright for 2025.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>TimeTrackerEntryDialog</class> <widget class="QDialog" name="TimeTrackerEntryDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>515</width> <height>147</height> </rect> </property> <property name="windowTitle"> <string>Edit Timer Entry</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <layout class="QGridLayout" name="gridLayout"> <item row="0" column="0"> <widget class="QLabel" name="label"> <property name="text"> <string>Start Date/Time:</string> </property> </widget> </item> <item row="0" column="1" colspan="2"> <widget class="QDateTimeEdit" name="startDateTimeEdit"> <property name="toolTip"> <string>Edit the start date and time of the timer</string> </property> <property name="displayFormat"> <string>yyyy-MM-dd HH:mm:ss</string> </property> <property name="calendarPopup"> <bool>true</bool> </property> </widget> </item> <item row="0" column="3"> <spacer name="horizontalSpacer"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>40</width> <height>20</height> </size> </property> </spacer> </item> <item row="1" column="0"> <widget class="QLabel" name="label_2"> <property name="text"> <string>Duration:</string> </property> </widget> </item> <item row="1" column="1"> <widget class="QSpinBox" name="durationSpinBox"> <property name="toolTip"> <string>Edit the duration of the timer</string> </property> <property name="alignment"> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> </property> <property name="suffix"> <string> min</string> </property> <property name="maximum"> <number>9999</number> </property> </widget> </item> <item row="1" column="2" colspan="2"> <spacer name="horizontalSpacer_2"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>108</width> <height>20</height> </size> </property> </spacer> </item> <item row="2" column="0"> <widget class="QLabel" name="label_3"> <property name="text"> <string>Task:</string> </property> </widget> </item> <item row="2" column="1" colspan="3"> <widget class="QComboBox" name="taskCombo"> <property name="sizePolicy"> <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="toolTip"> <string>Enter the task description for the timer</string> </property> <property name="editable"> <bool>true</bool> </property> </widget> </item> <item row="3" column="0"> <widget class="QLabel" name="label_4"> <property name="text"> <string>Comment:</string> </property> </widget> </item> <item row="3" column="1" colspan="3"> <widget class="QComboBox" name="commentCombo"> <property name="sizePolicy"> <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="toolTip"> <string>Enter a comment for the timer</string> </property> <property name="editable"> <bool>true</bool> </property> </widget> </item> </layout> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> </property> </widget> </item> </layout> </widget> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>TimeTrackerEntryDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>248</x> <y>254</y> </hint> <hint type="destinationlabel"> <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>TimeTrackerEntryDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>316</x> <y>260</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> </connections> </ui>