diff options
author | Arno <am@disconnect.de> | 2013-07-28 07:46:16 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2013-07-28 07:46:16 +0200 |
commit | d6b178b1fdcdac519ded25e3f253d9eeffa84053 (patch) | |
tree | ba9a03e041fa72ccde37367ef07864884f0ced7b /smglobals.h | |
parent | 5cfaa2c755c52c2ccbdd88ea3239dafb120a179b (diff) | |
download | SheMov-d6b178b1fdcdac519ded25e3f253d9eeffa84053.tar.gz SheMov-d6b178b1fdcdac519ded25e3f253d9eeffa84053.tar.bz2 SheMov-d6b178b1fdcdac519ded25e3f253d9eeffa84053.zip |
Implement file properties dialog
Show file properties in Filemanager and Archive, if the file is
available.
Also get rid of the palette stuff in SmGlobals. Just call setPalette()
early enough and set it in SmTreeView.
Diffstat (limited to 'smglobals.h')
-rw-r--r-- | smglobals.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/smglobals.h b/smglobals.h index 5580f47..72604ab 100644 --- a/smglobals.h +++ b/smglobals.h @@ -9,11 +9,8 @@ #define SMUBERMODELSINGLETON_H #include <QObject> - #include <QHash> #include <QSize> -#include <QPair> -#include <QList> class QAbstractItemModel; class PictureViewer2; @@ -30,8 +27,6 @@ class SmGlobals : public QObject { QAbstractItemModel *model(const QString &which); PictureViewer2 *pictureViewer(); FrameCache *frameCache(); - void setSeriesTreeWidget(SeriesTreeWidget *stree) { mSeriesTreeWidget = stree; } - SeriesTreeWidget *seriesTreeWidget(); void setArchiveController(ArchiveController *c) { mArchiveController = c; } ArchiveController *archiveController() { return mArchiveController; } QSize cursorSize(); @@ -39,7 +34,6 @@ class SmGlobals : public QObject { const QSize minPVSize() const { return QSize(640, 480); } const QHash<QString, QString> & icons() const { return mIcons; } qint64 dvdSize() const { return mDvdSize; } - QList<QWidget*> &treeWidgets() { return mTreeWidgets; } QHash<int, QString> filetypeMap() const { return mFiletypeMap; } private: @@ -54,7 +48,6 @@ class SmGlobals : public QObject { QSize mCursorSize; QHash<QString, QString> mIcons; qint64 mDvdSize; - QList<QWidget*> mTreeWidgets; ArchiveController *mArchiveController; QHash<int, QString> mFiletypeMap; }; |