Tue, 10 Dec 2024 15:49:02 +0100
Updated copyright for 2025.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>TimeTrackerWidget</class> <widget class="QWidget" name="TimeTrackerWidget"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>609</width> <height>185</height> </rect> </property> <layout class="QVBoxLayout" name="verticalLayout"> <property name="margin"> <number>0</number> </property> <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"> <widget class="QLabel" name="label_2"> <property name="text"> <string>Duration:</string> </property> </widget> </item> <item row="0" column="2"> <widget class="QLabel" name="label_3"> <property name="text"> <string>Task:</string> </property> </widget> </item> <item row="0" column="3"> <widget class="QLabel" name="label_4"> <property name="text"> <string>Comment:</string> </property> </widget> </item> <item row="1" column="0"> <widget class="QDateTimeEdit" name="startDateTimeEdit"> <property name="focusPolicy"> <enum>Qt::NoFocus</enum> </property> <property name="toolTip"> <string>Shows the start date and time of the current timer</string> </property> <property name="readOnly"> <bool>true</bool> </property> <property name="displayFormat"> <string>yyyy-MM-dd HH:mm:ss</string> </property> <property name="calendarPopup"> <bool>true</bool> </property> </widget> </item> <item row="1" column="1"> <widget class="QSpinBox" name="durationSpinBox"> <property name="focusPolicy"> <enum>Qt::NoFocus</enum> </property> <property name="toolTip"> <string>Shows the duration of the current timer</string> </property> <property name="alignment"> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> </property> <property name="readOnly"> <bool>true</bool> </property> <property name="suffix"> <string> min</string> </property> <property name="maximum"> <number>9999</number> </property> </widget> </item> <item row="1" column="2"> <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 current timer</string> </property> <property name="editable"> <bool>true</bool> </property> </widget> </item> <item row="1" column="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 current timer</string> </property> <property name="editable"> <bool>true</bool> </property> </widget> </item> </layout> </item> <item> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <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> <widget class="QPushButton" name="pauseButton"> <property name="toolTip"> <string>Press to pause the current timer</string> </property> <property name="text"> <string>Pause</string> </property> <property name="checkable"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QPushButton" name="newButton"> <property name="toolTip"> <string>Press to end the current timer and start a new one</string> </property> <property name="text"> <string>End Current Timer and Start a New Timer</string> </property> </widget> </item> <item> <spacer name="horizontalSpacer_2"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>40</width> <height>20</height> </size> </property> </spacer> </item> </layout> </item> <item> <widget class="QTreeWidget" name="entriesList"> <property name="contextMenuPolicy"> <enum>Qt::CustomContextMenu</enum> </property> <property name="editTriggers"> <set>QAbstractItemView::NoEditTriggers</set> </property> <property name="alternatingRowColors"> <bool>true</bool> </property> <property name="selectionMode"> <enum>QAbstractItemView::ExtendedSelection</enum> </property> <property name="rootIsDecorated"> <bool>false</bool> </property> <property name="allColumnsShowFocus"> <bool>true</bool> </property> <attribute name="headerStretchLastSection"> <bool>false</bool> </attribute> <column> <property name="text"> <string>Start Date/Time</string> </property> </column> <column> <property name="text"> <string>Duration</string> </property> </column> <column> <property name="text"> <string>Task</string> </property> </column> <column> <property name="text"> <string>Comment</string> </property> </column> </widget> </item> </layout> </widget> <resources/> <connections/> </ui>