aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/fileops/fileops.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/General/fileops/fileops.h')
-rw-r--r--src/plugins/General/fileops/fileops.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/plugins/General/fileops/fileops.h b/src/plugins/General/fileops/fileops.h
index 946071e47..cd84e1d4b 100644
--- a/src/plugins/General/fileops/fileops.h
+++ b/src/plugins/General/fileops/fileops.h
@@ -25,14 +25,15 @@
class QAction;
class SoundCore;
+class PlayListItem;
/**
- @author Ilya Kotov <forkotov02@hotmail.ru>
+ @author Ilya Kotov <forkotov02@hotmail.ru>
*/
class FileOps : public General
{
-Q_OBJECT
+ Q_OBJECT
public:
FileOps(QObject *parent = 0);
@@ -42,7 +43,6 @@ public:
{
COPY = 0,
RENAME,
- MOVE,
REMOVE
};
@@ -50,6 +50,8 @@ private slots:
void execAction(int n);
private:
+ QString generateFileName(PlayListItem *item, QString pattern);
+ QString printTag(QString str, QString regExp, QString tagStr, QString fmt);
QList <int> m_types;
QStringList m_patterns;
QStringList m_destinations;