mirror of
https://github.com/markdavidlong/AppleSAWS.git
synced 2024-11-25 20:31:56 +00:00
46 lines
820 B
C++
46 lines
820 B
C++
#ifndef VIEWERBASE_H
|
|
#define VIEWERBASE_H
|
|
|
|
#include <QMainWindow>
|
|
#include <QStackedWidget>
|
|
#include <QToolBar>
|
|
#include <QComboBox>
|
|
|
|
#include "fileviewerinterface.h"
|
|
#include "genericfile.h"
|
|
|
|
namespace Ui {
|
|
class ViewerBase;
|
|
}
|
|
|
|
class ViewerBase : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ViewerBase(QWidget *parent = 0);
|
|
~ViewerBase();
|
|
|
|
void setFile(GenericFile *file);
|
|
|
|
public slots:
|
|
void showViewer(QString descriptor);
|
|
|
|
protected:
|
|
void closeEvent(QCloseEvent *event);
|
|
void addViewer(QString descriptor, FileViewerInterface *viewer);
|
|
|
|
private:
|
|
Ui::ViewerBase *ui;
|
|
QStackedWidget *m_stack;
|
|
QToolBar *m_toolbar;
|
|
QComboBox *m_viewercombo;
|
|
|
|
QMap<QString,FileViewerInterface *> m_viewers;
|
|
GenericFile *m_file;
|
|
QMenu *m_optionMenu;
|
|
|
|
};
|
|
|
|
#endif // VIEWERBASE_H
|