diff options
author | Christian Kandeler <christian.kandeler@nokia.com> | 2011-07-22 11:21:20 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@nokia.com> | 2011-07-22 11:39:10 +0200 |
commit | 4bf65fe47b266b88c4587f504c2947e35e0f9695 (patch) | |
tree | e2573b8a8e145e01ce05f561073a4f3852d788c7 /src/plugins/remotelinux/remotelinuxprocessesdialog.ui | |
parent | a1748e4bbed551e73a3f0cc7809bd81c5a013591 (diff) | |
download | qt-creator-4bf65fe47b266b88c4587f504c2947e35e0f9695.tar.gz |
RemoteLinux: Split up "remote processes" functionality...
... into generic and Maemo-specific parts.
Change-Id: If1f3664ed7320d3e51655cc092cea36be1a9fe66
Reviewed-on: http://codereview.qt.nokia.com/2026
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/remotelinuxprocessesdialog.ui')
-rw-r--r-- | src/plugins/remotelinux/remotelinuxprocessesdialog.ui | 148 |
1 files changed, 148 insertions, 0 deletions
diff --git a/src/plugins/remotelinux/remotelinuxprocessesdialog.ui b/src/plugins/remotelinux/remotelinuxprocessesdialog.ui new file mode 100644 index 0000000000..3ee7a59991 --- /dev/null +++ b/src/plugins/remotelinux/remotelinuxprocessesdialog.ui @@ -0,0 +1,148 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>RemoteLinuxProcessesDialog</class> + <widget class="QDialog" name="RemoteLinuxProcessesDialog"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>766</width> + <height>684</height> + </rect> + </property> + <property name="windowTitle"> + <string>List of Remote Processes</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout_2"> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_2"> + <item> + <widget class="QLabel" name="filterLabel"> + <property name="text"> + <string>&Filter by process name:</string> + </property> + <property name="buddy"> + <cstring>processFilterLineEdit</cstring> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="processFilterLineEdit"/> + </item> + <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> + </layout> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="QTableView" name="tableView"> + <property name="showGrid"> + <bool>false</bool> + </property> + <property name="sortingEnabled"> + <bool>true</bool> + </property> + <attribute name="horizontalHeaderDefaultSectionSize"> + <number>100</number> + </attribute> + <attribute name="horizontalHeaderStretchLastSection"> + <bool>true</bool> + </attribute> + <attribute name="verticalHeaderVisible"> + <bool>false</bool> + </attribute> + </widget> + </item> + <item> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QPushButton" name="updateListButton"> + <property name="text"> + <string>&Update List</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="killProcessButton"> + <property name="text"> + <string>&Kill Selected Process</string> + </property> + </widget> + </item> + <item> + <spacer name="verticalSpacer"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>20</width> + <height>40</height> + </size> + </property> + </spacer> + </item> + </layout> + </item> + </layout> + </item> + <item> + <widget class="QDialogButtonBox" name="buttonBox"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="standardButtons"> + <set>QDialogButtonBox::Close</set> + </property> + </widget> + </item> + </layout> + </widget> + <resources/> + <connections> + <connection> + <sender>buttonBox</sender> + <signal>accepted()</signal> + <receiver>RemoteLinuxProcessesDialog</receiver> + <slot>accept()</slot> + <hints> + <hint type="sourcelabel"> + <x>257</x> + <y>290</y> + </hint> + <hint type="destinationlabel"> + <x>157</x> + <y>274</y> + </hint> + </hints> + </connection> + <connection> + <sender>buttonBox</sender> + <signal>rejected()</signal> + <receiver>RemoteLinuxProcessesDialog</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> |