From 84da08d7b7fcda12c85caeb5a10b4903770a6f69 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- noatun-plugins/lyrics/cmodule.h | 43 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 noatun-plugins/lyrics/cmodule.h (limited to 'noatun-plugins/lyrics/cmodule.h') diff --git a/noatun-plugins/lyrics/cmodule.h b/noatun-plugins/lyrics/cmodule.h new file mode 100644 index 0000000..dbb2da7 --- /dev/null +++ b/noatun-plugins/lyrics/cmodule.h @@ -0,0 +1,43 @@ +#ifndef _LYRICSCMODULE_H_ +#define _LYRICSCMODULE_H_ + +#include +#include +#include + +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 mProviders; +}; + + + + + +#endif -- cgit v1.2.1