Skip to content

Instantly share code, notes, and snippets.

View raven-worx's full-sized avatar

raven-worx

View GitHub Profile
@raven-worx
raven-worx / GridFlow.cpp
Created January 11, 2021 10:31
QML GridFlow (Masonry) Layout type
#include "GridFlow.hpp"
#include <QQmlInfo>
#include <QTime>
#include <QQmlProperty>
#include <QCoreApplication>
GridFlow::GridFlow(QQuickItem *parentItem)
: QQuickItem(parentItem), m_HorizontalSpacing(5), m_VerticalSpacing(5), m_Margin(5)
, m_RowHeight(50), m_SpanningEnabled(true), m_KeepChildOrder(false), m_ColumnWidth(0), m_ColumnCount(4)
{