qskinny/examples/automotive/MainWindow.h

20 lines
282 B
C
Raw Normal View History

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