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.
amarok/amarok/src/metabundlesaver.h

53 lines
1.1 KiB

// Jeff Mitchell <kde-dev@emailgoeshere.com>, (C) 2006
// License: GNU General Public License V2
#ifndef METABUNDLESAVER_H
#define METABUNDLESAVER_H
#include <tqobject.h>
#include <tqstringlist.h>
#include <kurl.h> //inline functions
#include <klocale.h> //inline functions
#include <taglib/audioproperties.h>
#include "expression.h"
#include "atomicstring.h"
#include "atomicurl.h"
#include "amarok_export.h"
namespace TagLib {
class FileRef;
}
/**
* @class MetaBundleSaver
* @author Jeff Mitchell <kde-dev@emailgoeshere.com>
*/
class LIBAMAROK_EXPORT MetaBundleSaver : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
MetaBundleSaver( MetaBundle *bundle );
~MetaBundleSaver();
//bool scannerSafeSave( TagLib::File* file );
TagLib::FileRef* prepareToSave();
bool doSave();
bool cleanupSave();
void abortSave( const TQString message );
private:
MetaBundle *m_bundle;
TQString m_tempSavePath;
TQString m_origRenamedSavePath;
TQCString m_tempSaveDigest;
TagLib::FileRef* m_saveFileref;
char m_databuf[8192];
TQ_ULONG m_maxlen;
bool m_cleanupNeeded;
};
#endif