diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2012-02-10 12:21:54 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2012-02-10 12:21:54 +0000 |
| commit | c9cb0def793dcd34aa4d516d9e50c1f0b81e1dc3 (patch) | |
| tree | 3a81db87e4e9dd6995da27c63362e4f0fa06a062 /src/qmmpui/fileloader_p.h | |
| parent | bc28f1332bbbf9bad49bbad6fd01ef03b4ab99b9 (diff) | |
| download | qmmp-c9cb0def793dcd34aa4d516d9e50c1f0b81e1dc3.tar.gz qmmp-c9cb0def793dcd34aa4d516d9e50c1f0b81e1dc3.tar.bz2 qmmp-c9cb0def793dcd34aa4d516d9e50c1f0b81e1dc3.zip | |
added directory filters
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2589 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/fileloader_p.h')
| -rw-r--r-- | src/qmmpui/fileloader_p.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qmmpui/fileloader_p.h b/src/qmmpui/fileloader_p.h index 3a6841e6d..278b4695d 100644 --- a/src/qmmpui/fileloader_p.h +++ b/src/qmmpui/fileloader_p.h @@ -23,9 +23,11 @@ #include <QObject> #include <QDir> #include <QQueue> +#include <QFileInfo> #include <QThread> class PlayListItem; +class QmmpUiSettings; /*! @internal * @brief File loader class. @@ -79,9 +81,12 @@ protected: void addDirectory(const QString &s); private: + bool checkRestrictFilters(const QFileInfo &info); + bool checkExcludeFilters(const QFileInfo &info); QQueue <QString> m_files; QQueue <QString> m_directories; QStringList m_filters; + QmmpUiSettings *m_settings; bool m_finished; }; |
