9f17d59e
陈明泉
no message
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#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
|