2022-07-14 14:35:57 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Copyright (C) 2021 Edelhirsch Software GmbH
|
2023-04-06 10:15:03 +02:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2022-07-14 14:35:57 +02:00
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QskGridBox.h>
|
|
|
|
#include <QskLinearBox.h>
|
|
|
|
|
|
|
|
class MainContentGridBox : public QskGridBox
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
QSK_SUBCONTROLS( Panel )
|
|
|
|
|
|
|
|
MainContentGridBox( QQuickItem* parent = nullptr )
|
|
|
|
: QskGridBox( parent )
|
|
|
|
{
|
|
|
|
setSubcontrolProxy( QskGridBox::Panel, Panel );
|
|
|
|
}
|
|
|
|
};
|