| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>MainWindow</class>
- <widget class="QMainWindow" name="MainWindow">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>444</width>
- <height>402</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Todo</string>
- </property>
- <widget class="QWidget" name="centralwidget">
- <widget class="QListView" name="todoView">
- <property name="geometry">
- <rect>
- <x>10</x>
- <y>10</y>
- <width>421</width>
- <height>192</height>
- </rect>
- </property>
- </widget>
- <widget class="QPushButton" name="deleteButton">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>220</y>
- <width>113</width>
- <height>32</height>
- </rect>
- </property>
- <property name="text">
- <string>Delete</string>
- </property>
- </widget>
- <widget class="QPushButton" name="completeButton">
- <property name="geometry">
- <rect>
- <x>320</x>
- <y>220</y>
- <width>113</width>
- <height>32</height>
- </rect>
- </property>
- <property name="text">
- <string>Complet</string>
- </property>
- </widget>
- <widget class="QLineEdit" name="todoEdit">
- <property name="geometry">
- <rect>
- <x>10</x>
- <y>260</y>
- <width>421</width>
- <height>21</height>
- </rect>
- </property>
- </widget>
- <widget class="QPushButton" name="addButton">
- <property name="geometry">
- <rect>
- <x>10</x>
- <y>300</y>
- <width>431</width>
- <height>32</height>
- </rect>
- </property>
- <property name="text">
- <string>Add Todo</string>
- </property>
- </widget>
- </widget>
- <widget class="QMenuBar" name="menubar">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>444</width>
- <height>22</height>
- </rect>
- </property>
- </widget>
- <widget class="QStatusBar" name="statusbar"/>
- </widget>
- <tabstops>
- <tabstop>todoView</tabstop>
- <tabstop>deleteButton</tabstop>
- <tabstop>todoEdit</tabstop>
- <tabstop>completeButton</tabstop>
- <tabstop>addButton</tabstop>
- </tabstops>
- <resources/>
- <connections/>
- </ui>
|