qskinny/src/controls/QskMainView.h

36 lines
840 B
C
Raw Normal View History

2022-07-12 14:51:39 +00:00
/******************************************************************************
* QSkinny - Copyright (C) 2022 Uwe Rathmann
* This file may be used under the terms of the QSkinny License, Version 1.0
*****************************************************************************/
2023-03-10 14:45:53 +00:00
#ifndef QSK_MAIN_VIEW_H
#define QSK_MAIN_VIEW_H
2022-07-12 14:51:39 +00:00
#include "QskLinearBox.h"
2023-03-10 14:45:53 +00:00
class QSK_EXPORT QskMainView : public QskLinearBox
2022-07-12 14:51:39 +00:00
{
Q_OBJECT
using Inherited = QskLinearBox;
public:
2023-03-10 14:45:53 +00:00
QskMainView( QQuickItem* parent = nullptr );
~QskMainView() override;
2022-07-12 14:51:39 +00:00
QskControl* header() const;
void setHeader( QskControl* );
QskControl* body() const;
void setBody( QskControl* );
QskControl* footer() const;
void setFooter( QskControl* );
private:
class PrivateData;
std::unique_ptr< PrivateData > m_data;
};
#endif