blob: cc82140b6ce2bdf43ee1671410f00962d7014d1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/***************************************************************************
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 <tqhbox.h>
#include "playlistsearch.h"
#include "jukIface.h"
class TQCheckBox;
class KComboBox;
class Playlist;
class SearchLine : public TQHBox
{
Q_OBJECT
public:
enum Mode { Default = 0, CaseSensitive = 1, Pattern = 2 };
SearchLine(TQWidget *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(TQObject *watched, TQEvent *e);
signals:
void signalQueryChanged();
void signalDownPressed();
private slots:
void slotActivate();
private:
bool m_simple;
KLineEdit *m_lineEdit;
KComboBox *m_searchFieldsBox;
KComboBox *m_caseSensitive;
TQValueList<int> m_columnList;
};
class SearchWidget : public KToolBar, public SearchIface
{
Q_OBJECT
public:
SearchWidget(TQWidget *parent, const char *name = 0);
virtual ~SearchWidget();
PlaylistSearch search(const PlaylistList &playlists) const;
void setSearch(const PlaylistSearch &search);
virtual TQString searchText() const;
virtual void setSearchText(const TQString &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;
TQStringList m_columnHeaders;
};
#endif
|