You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeaddons/noatun-plugins/lyrics/lyrics.h

57 lines
1.0 KiB

#ifndef LYRICS_H
#define LYRICS_H
#include <noatun/plugin.h>
#include <noatun/player.h>
#include <noatun/app.h>
#include <kmainwindow.h>
#include <tqvaluevector.h>
#include <tdehtml_part.h>
#include <kaction.h>
#include "cmodule.h"
class HistoryManager;
class Lyrics : public TDEMainWindow, public Plugin {
Q_OBJECT
public:
Lyrics();
~Lyrics();
void go(const KURL &);
void setProviders( TQValueVector<SearchProvider> &sites );
public slots:
void viewLyrics(int index = -1);
void back();
void forward();
protected:
bool queryClose();
protected slots:
void changeUI(int, bool);
void openURLRequest( const KURL &, const KParts::URLArgs & );
void loadingURL(TDEIO::Job *);
void loadedURL();
void attach(bool);
void newSong();
void goTo();
private:
int menuID;
TDEAction *back_act, *forward_act;
TDEToggleAction *follow_act;
TDEToggleAction *attach_act;
TDESelectAction *site_act;
TDEHTMLPart *htmlpart;
TQValueVector<SearchProvider> mSites;
HistoryManager *history;
bool active;
};
#endif