diff options
author | Arno <arno@disconnect.de> | 2016-10-01 06:08:32 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2016-10-01 06:08:32 +0200 |
commit | b56947a5ec754019feb7ff37868f8c8eb6c39146 (patch) | |
tree | 45635e6dce4b88ac0975ad87ab08d305943bc140 /smglobals.h | |
parent | b4e40837f016849910851aa3cf688e2c4382e7cd (diff) | |
download | SheMov-b56947a5ec754019feb7ff37868f8c8eb6c39146.tar.gz SheMov-b56947a5ec754019feb7ff37868f8c8eb6c39146.tar.bz2 SheMov-b56947a5ec754019feb7ff37868f8c8eb6c39146.zip |
Configure reencode reasons
Next: make it available in new movies dialog.
Diffstat (limited to 'smglobals.h')
-rw-r--r-- | smglobals.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/smglobals.h b/smglobals.h index a674203..7cc332f 100644 --- a/smglobals.h +++ b/smglobals.h @@ -11,6 +11,7 @@ #include <QObject> #include <QHash> #include <QSize> +#include <QStringList> class QAbstractItemModel; class PictureViewer2; @@ -43,6 +44,8 @@ class SmGlobals : public QObject { QHash<int, QString> filetypeMap() const { return mFiletypeMap; } QHash<QString, QWidget*> registeredWidgets() { return mWidgets; } void registerWidget(const QString &name, QWidget *w); + QStringList reencReasons() const { return mReencReasons; } + void setReencReasons(const QStringList reasons); private: SmGlobals(); @@ -57,6 +60,7 @@ class SmGlobals : public QObject { ArchiveController *mArchiveController; QHash<int, QString> mFiletypeMap; QHash<QString, QWidget*> mWidgets; + QStringList mReencReasons; }; #endif |