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.
tdemultimedia/noatun/modules/metatag/metatag.h

32 lines
582 B

#ifndef NID3_H
#define NID3_H
#include <noatun/player.h>
#include <noatun/plugin.h>
#include <noatun/pref.h>
#include <noatuntags/tags.h>
#include <tqobject.h>
class KFileMetaInfo;
class TDEAction;
class MetaTagLoader:public TQObject, public Tags, public Plugin {
TQ_OBJECT
public:
MetaTagLoader();
~MetaTagLoader();
public slots:
bool update(PlaylistItem & item);
void editTag();
private:
bool setProperty(KFileMetaInfo &info, PlaylistItem &item, const TQString &key, const TQString &property);
int menuID;
TDEAction *mAction;
};
#endif