diff options
author | necoro <> | 2007-06-18 15:32:23 +0000 |
---|---|---|
committer | necoro <> | 2007-06-18 15:32:23 +0000 |
commit | ae7f2d4cc94dcbc2c0d19dfb4d0154589e117cd5 (patch) | |
tree | b517b46bf38bdc9e752041d50eb76547f3df9d10 /portato/gui/templates/ui | |
parent | 095494f8811ee3667c82c4e2240df98558991b19 (diff) | |
download | portato-ae7f2d4cc94dcbc2c0d19dfb4d0154589e117cd5.tar.gz portato-ae7f2d4cc94dcbc2c0d19dfb4d0154589e117cd5.tar.bz2 portato-ae7f2d4cc94dcbc2c0d19dfb4d0154589e117cd5.zip |
added updated list to Qt
Diffstat (limited to 'portato/gui/templates/ui')
-rw-r--r-- | portato/gui/templates/ui/MainWindow.ui | 8 | ||||
-rw-r--r-- | portato/gui/templates/ui/UpdateDialog.ui | 93 |
2 files changed, 100 insertions, 1 deletions
diff --git a/portato/gui/templates/ui/MainWindow.ui b/portato/gui/templates/ui/MainWindow.ui index cd7b40c..e2eb0dc 100644 --- a/portato/gui/templates/ui/MainWindow.ui +++ b/portato/gui/templates/ui/MainWindow.ui @@ -416,7 +416,7 @@ p, li { white-space: pre-wrap; } <x>0</x> <y>0</y> <width>466</width> - <height>27</height> + <height>31</height> </rect> </property> <widget class="QMenu" name="fileMenu" > @@ -441,6 +441,7 @@ p, li { white-space: pre-wrap; } <addaction name="emergeAction" /> <addaction name="unmergeAction" /> <addaction name="updateAction" /> + <addaction name="updateListAction" /> <addaction name="separator" /> <addaction name="syncAction" /> <addaction name="saveAction" /> @@ -534,6 +535,11 @@ p, li { white-space: pre-wrap; } <string>Sort by Name</string> </property> </action> + <action name="updateListAction" > + <property name="text" > + <string>Show &new packages</string> + </property> + </action> </widget> <customwidgets> <customwidget> diff --git a/portato/gui/templates/ui/UpdateDialog.ui b/portato/gui/templates/ui/UpdateDialog.ui new file mode 100644 index 0000000..b783182 --- /dev/null +++ b/portato/gui/templates/ui/UpdateDialog.ui @@ -0,0 +1,93 @@ +<ui version="4.0" > + <class>UpdateDialog</class> + <widget class="QDialog" name="UpdateDialog" > + <property name="geometry" > + <rect> + <x>0</x> + <y>0</y> + <width>400</width> + <height>372</height> + </rect> + </property> + <property name="windowTitle" > + <string>Update List</string> + </property> + <layout class="QVBoxLayout" > + <property name="margin" > + <number>9</number> + </property> + <property name="spacing" > + <number>6</number> + </property> + <item> + <widget class="QListWidget" name="packageList" > + <property name="alternatingRowColors" > + <bool>true</bool> + </property> + <property name="horizontalScrollMode" > + <enum>QAbstractItemView::ScrollPerPixel</enum> + </property> + </widget> + </item> + <item> + <layout class="QHBoxLayout" > + <property name="margin" > + <number>0</number> + </property> + <property name="spacing" > + <number>6</number> + </property> + <item> + <widget class="QPushButton" name="closeBtn" > + <property name="sizePolicy" > + <sizepolicy> + <hsizetype>1</hsizetype> + <vsizetype>0</vsizetype> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="text" > + <string>Close</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="installAllBtn" > + <property name="sizePolicy" > + <sizepolicy> + <hsizetype>1</hsizetype> + <vsizetype>0</vsizetype> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="text" > + <string>Install all</string> + </property> + </widget> + </item> + </layout> + </item> + </layout> + </widget> + <resources/> + <connections> + <connection> + <sender>closeBtn</sender> + <signal>clicked()</signal> + <receiver>UpdateDialog</receiver> + <slot>reject()</slot> + <hints> + <hint type="sourcelabel" > + <x>117</x> + <y>352</y> + </hint> + <hint type="destinationlabel" > + <x>140</x> + <y>368</y> + </hint> + </hints> + </connection> + </connections> +</ui> |