diff options
Diffstat (limited to 'archiveeditwidget.h')
-rw-r--r-- | archiveeditwidget.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/archiveeditwidget.h b/archiveeditwidget.h new file mode 100644 index 0000000..2f8b382 --- /dev/null +++ b/archiveeditwidget.h @@ -0,0 +1,37 @@ +/* + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version + 2 of the License, or (at your option) any later version. +*/ + +#ifndef ARCHIVEEDITWIDGET_H +#define ARCHIVEEDITWIDGET_H + +#include <QWidget> + +class ArchiveFileWidget; +class ListEditor; +class CoverEditor; +class ListModel; +class MovieModel; + +class ArchiveEditWidget : public QWidget { + Q_OBJECT + public: + ArchiveEditWidget(QWidget *parent = 0); + ~ArchiveEditWidget() {}; + + private: + ArchiveFileWidget *mFileWidget; + ListEditor *mGenreEditor; + ListEditor *mActorsEditor; + CoverEditor *mCoverEditor; + ListModel *mGenreModel; + ListModel *mActorsModel; + MovieModel *mMovieModel; + +}; + +#endif + |