aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/streambrowser/streamwindow.h
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2012-02-27 11:47:42 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2012-02-27 11:47:42 +0000
commitbd16af99a8475c3847cad3f8036c25ae35a7f66d (patch)
treed79d335de0bd0e03f17d2831b5ea71f34d8a3246 /src/plugins/General/streambrowser/streamwindow.h
parent2674c40dcca4382c42572b1388f6d83a787c59dd (diff)
downloadqmmp-bd16af99a8475c3847cad3f8036c25ae35a7f66d.tar.gz
qmmp-bd16af99a8475c3847cad3f8036c25ae35a7f66d.tar.bz2
qmmp-bd16af99a8475c3847cad3f8036c25ae35a7f66d.zip
stream browser: added filter
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2641 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/streambrowser/streamwindow.h')
-rw-r--r--src/plugins/General/streambrowser/streamwindow.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/General/streambrowser/streamwindow.h b/src/plugins/General/streambrowser/streamwindow.h
index 3bd0e69e7..b33e6f36f 100644
--- a/src/plugins/General/streambrowser/streamwindow.h
+++ b/src/plugins/General/streambrowser/streamwindow.h
@@ -26,6 +26,7 @@
class QNetworkAccessManager;
class QNetworkReply;
class QStandardItemModel;
+class QSortFilterProxyModel;
/**
@author Ilya Kotov <forkotov02@hotmail.ru>
@@ -42,6 +43,7 @@ private slots:
void showText(QNetworkReply *reply);
void on_updatePushButton_clicked();
void on_addPushButton_clicked();
+ void on_filterLineEdit_textChanged(const QString &text);
private:
void closeEvent(QCloseEvent *);
@@ -51,6 +53,7 @@ private:
QNetworkReply *m_requestReply;
QString m_artist, m_title;
QStandardItemModel *m_icecastModel;
+ QSortFilterProxyModel *m_filterModel;
};
#endif