ishowframe.h
500 Bytes
#ifndef ISHOWFRAME_H
#define ISHOWFRAME_H
#include <QWidget>
class IShowStack;
class MainWindow;
class IShowFrame : public QWidget
{
Q_OBJECT
public:
explicit IShowFrame(MainWindow *parent);
~IShowFrame();
bool addIShow(const QString& name);
void removeAllIShows();
bool setCurrentIShow(const QString& name);
private:
MainWindow *gui;
IShowStack *iShowStack;
public slots:
void gotoOverviewPage();
signals:
public slots:
};
#endif // ISHOWFRAME_H