2024-02-25 12:21:59 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* QSkinny - Copyright (C) The authors
|
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2024-02-26 14:27:52 +00:00
|
|
|
#include <QskMainView.h>
|
2024-02-25 12:21:59 +00:00
|
|
|
|
2024-02-26 14:27:52 +00:00
|
|
|
class QskModelObjectBinder;
|
|
|
|
|
|
|
|
class MainView : public QskMainView
|
2024-02-25 12:21:59 +00:00
|
|
|
{
|
|
|
|
public:
|
2024-02-26 14:27:52 +00:00
|
|
|
MainView( QQuickItem* = nullptr );
|
|
|
|
|
|
|
|
private:
|
|
|
|
void toogleRow();
|
|
|
|
|
|
|
|
QskModelObjectBinder* m_binder;
|
2024-02-25 12:21:59 +00:00
|
|
|
};
|