diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemoremoteprocessesdialog.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemoremoteprocessesdialog.cpp index a2b45dd0b4cb6ba749299ada4e0cae6613182e95..a4bd624e8262959fb9751b19e13ede445d5127f0 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/maemoremoteprocessesdialog.cpp +++ b/src/plugins/qt4projectmanager/qt-maemo/maemoremoteprocessesdialog.cpp @@ -60,7 +60,11 @@ MaemoRemoteProcessesDialog::MaemoRemoteProcessesDialog(const Core::SshConnection m_ui->tableView->setSelectionBehavior(QAbstractItemView::SelectRows); m_proxyModel->setSourceModel(m_processList); m_proxyModel->setDynamicSortFilter(true); + m_proxyModel->setFilterKeyColumn(1); m_ui->tableView->setModel(m_proxyModel); + connect(m_ui->processFilterLineEdit, SIGNAL(textChanged(QString)), + m_proxyModel, SLOT(setFilterRegExp(QString))); + m_ui->processFilterLineEdit->setText(QLatin1String("[^ ]+")); connect(m_ui->tableView->selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), SLOT(handleSelectionChanged())); diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemoremoteprocessesdialog.ui b/src/plugins/qt4projectmanager/qt-maemo/maemoremoteprocessesdialog.ui index 6b02f228e7a7d92d1dd3f4eb0d849f446a8165aa..1a142ebf9fa1575bf029d8b0403002ff957de25f 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/maemoremoteprocessesdialog.ui +++ b/src/plugins/qt4projectmanager/qt-maemo/maemoremoteprocessesdialog.ui @@ -11,15 +11,35 @@ </rect> </property> <property name="windowTitle"> - <string>Dialog</string> + <string>List of Remote Processes</string> </property> <layout class="QVBoxLayout" name="verticalLayout_2"> <item> - <widget class="QLabel" name="label"> - <property name="text"> - <string>Processes running on remote host:</string> - </property> - </widget> + <layout class="QHBoxLayout" name="horizontalLayout_2"> + <item> + <widget class="QLabel" name="filterLabel"> + <property name="text"> + <string>Filter by process name:</string> + </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">