diff options
Diffstat (limited to 'juk/searchwidget.h')
-rw-r--r-- | juk/searchwidget.h | 111 |
1 files changed, 111 insertions, 0 deletions
diff --git a/juk/searchwidget.h b/juk/searchwidget.h new file mode 100644 index 00000000..37a44cb7 --- /dev/null +++ b/juk/searchwidget.h @@ -0,0 +1,111 @@ +/*************************************************************************** + begin : Sun Mar 6 2003 + copyright : (C) 2003 by Richard Lärkäng + email : nouseforaname@home.se + + copyright : (C) 2003 - 2004 by Scott Wheeler + email : wheeler@kde.org + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#ifndef SEARCHWIDGET_H +#define SEARCHWIDGET_H + +#include <ktoolbar.h> + +#include <qhbox.h> + +#include "playlistsearch.h" +#include "jukIface.h" + +class QCheckBox; + +class KComboBox; + +class Playlist; + +class SearchLine : public QHBox +{ + Q_OBJECT + +public: + enum Mode { Default = 0, CaseSensitive = 1, Pattern = 2 }; + + SearchLine(QWidget *parent, bool simple = false, const char *name = 0); + virtual ~SearchLine() {} + + PlaylistSearch::Component searchComponent() const; + void setSearchComponent(const PlaylistSearch::Component &component); + + void updateColumns(); + +public slots: + void clear(); + virtual void setFocus(); + +protected: + virtual bool eventFilter(QObject *watched, QEvent *e); + +signals: + void signalQueryChanged(); + void signalDownPressed(); + +private slots: + void slotActivate(); + +private: + bool m_simple; + KLineEdit *m_lineEdit; + KComboBox *m_searchFieldsBox; + KComboBox *m_caseSensitive; + QValueList<int> m_columnList; +}; + +class SearchWidget : public KToolBar, public SearchIface +{ + Q_OBJECT + +public: + SearchWidget(QWidget *parent, const char *name = 0); + virtual ~SearchWidget(); + + PlaylistSearch search(const PlaylistList &playlists) const; + void setSearch(const PlaylistSearch &search); + + virtual QString searchText() const; + virtual void setSearchText(const QString &text); + +public slots: + void clear(); + void setEnabled(bool enable); + virtual void setFocus(); + +signals: + void signalQueryChanged(); + void signalAdvancedSearchClicked(); + + // This signal is only emitted when the Show/Hide action is triggered. + // Minimizing/closing the JuK window will not trigger this signal. + + void signalShown(bool shown); + + void signalDownPressed(); + +private: + void updateColumns(); + void setupLayout(); + +private: + SearchLine *m_searchLine; + QStringList m_columnHeaders; +}; + +#endif |