Tue, 27 Aug 2024 14:06:50 +0200
Implemented the 'Install Model' menu action.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>OllamaPullProgressDialog</class> <widget class="QDialog" name="OllamaPullProgressDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>600</width> <height>400</height> </rect> </property> <property name="windowTitle"> <string>Install Model</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QLabel" name="header"> <property name="text"> <string notr="true">Header</string> </property> </widget> </item> <item> <widget class="QTreeWidget" name="progressList"> <property name="editTriggers"> <set>QAbstractItemView::NoEditTriggers</set> </property> <property name="alternatingRowColors"> <bool>true</bool> </property> <property name="selectionMode"> <enum>QAbstractItemView::NoSelection</enum> </property> <property name="rootIsDecorated"> <bool>false</bool> </property> <property name="itemsExpandable"> <bool>false</bool> </property> <property name="columnCount"> <number>3</number> </property> <attribute name="headerVisible"> <bool>false</bool> </attribute> <attribute name="headerDefaultSectionSize"> <number>200</number> </attribute> <column> <property name="text"> <string notr="true">1</string> </property> </column> <column> <property name="text"> <string notr="true">2</string> </property> </column> <column> <property name="text"> <string notr="true">3</string> </property> </column> </widget> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Cancel|QDialogButtonBox::Close</set> </property> </widget> </item> </layout> </widget> <resources/> <connections/> </ui>