2017-07-25 05:24:27 +00:00
|
|
|
#ifndef MAINWINDOW_H
|
|
|
|
#define MAINWINDOW_H
|
|
|
|
|
|
|
|
#include <QskWindow.h>
|
|
|
|
|
2017-07-25 09:33:33 +00:00
|
|
|
class QQuickItem;
|
2017-07-25 05:24:27 +00:00
|
|
|
|
|
|
|
class MainWindow : public QskWindow
|
|
|
|
{
|
2018-08-03 06:15:28 +00:00
|
|
|
public:
|
2017-07-25 05:24:27 +00:00
|
|
|
MainWindow();
|
|
|
|
|
2018-08-03 06:15:28 +00:00
|
|
|
private:
|
2017-07-25 09:33:33 +00:00
|
|
|
QQuickItem* headerBar() const;
|
|
|
|
QQuickItem* mainContent() const;
|
|
|
|
QQuickItem* footerBar() const;
|
2017-07-25 05:24:27 +00:00
|
|
|
};
|
|
|
|
|
2017-07-25 09:33:33 +00:00
|
|
|
#endif
|