blob: dbb2da73dbd579e592893b8a0d99328f2ce62cee (
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
|
#ifndef _LYRICSCMODULE_H_
#define _LYRICSCMODULE_H_
#include <noatun/pref.h>
#include <qvaluevector.h>
#include <klocale.h>
class KLineEdit;
class KListBox;
class KButtonBox;
struct SearchProvider {
QString name;
QString url;
};
class LyricsCModule : public CModule {
Q_OBJECT
public:
LyricsCModule(QObject *_parent);
public slots:
virtual void save(void);
virtual void reopen(void);
void newSearch(QString name = i18n( "New Search Provider" ), QString query = "");
void delSearch();
void moveUpSearch();
void moveDownSearch();
void selected( QListBoxItem *i );
void nameChanged( const QString &name );
void queryChanged( const QString &query );
protected:
KListBox *providersBox;
KButtonBox *boxButtons;
KLineEdit *nameEdit;
KLineEdit *queryEdit;
QValueVector<SearchProvider> mProviders;
};
#endif
|