qskinny/examples/hmi-demo/MainWindow.h

22 lines
300 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
{
public:
MainWindow();
private:
2017-07-25 11:33:33 +02:00
void populate();
2017-07-25 07:24:27 +02:00
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