41 lines
1.3 KiB
C++
41 lines
1.3 KiB
C++
/******************************************************************************
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
|
* This file may be used under the terms of the 3-clause BSD License
|
|
*****************************************************************************/
|
|
|
|
#ifndef GRID_QUICK_H
|
|
#define GRID_QUICK_H
|
|
|
|
#include "GridAccessor.h"
|
|
#include <QQuickWidget>
|
|
|
|
class QGraphicsGridLayout;
|
|
|
|
class GridQuick : public QQuickWidget, public GridAccessor
|
|
{
|
|
public:
|
|
GridQuick( QWidget* parent = nullptr );
|
|
~GridQuick() override;
|
|
|
|
void insert( const QByteArray& colorName,
|
|
int row, int column, int rowSpan, int columnSpan ) override;
|
|
|
|
void setSpacing( Qt::Orientations, int spacing ) override;
|
|
|
|
void setStretchFactor( int pos, Qt::Orientation, int stretch ) override;
|
|
void setSizeHint( int pos, Qt::Orientation, Qt::SizeHint, int hint ) override;
|
|
|
|
void setSizeHintAt( int index, Qt::Orientation, Qt::SizeHint, int hint ) override;
|
|
void setSizePolicyAt( int index, Qt::Orientation, int policy ) override;
|
|
void setAlignmentAt( int index, Qt::Alignment ) override;
|
|
void setRetainSizeWhenHiddenAt( int index, bool on ) override;
|
|
|
|
protected:
|
|
void resizeEvent( QResizeEvent* ) override;
|
|
|
|
private:
|
|
QQuickItem* m_grid;
|
|
};
|
|
|
|
#endif
|