5#ifndef QRANGEMODEL_IMPL_H
6#define QRANGEMODEL_IMPL_H
11#error Do not include qrangemodel_impl.h directly
15#pragma qt_sync_skip_header_check
16#pragma qt_sync_stop_processing
19#include <QtCore/qabstractitemmodel.h>
20#include <QtCore/qcollator.h>
21#include <QtCore/qquasivirtual_impl.h>
22#include <QtCore/qmetaobject.h>
23#include <QtCore/qvariant.h>
24#include <QtCore/qmap.h>
25#include <QtCore/qscopedvaluerollback.h>
26#include <QtCore/qset.h>
27#include <QtCore/qregularexpression.h>
28#include <QtCore/qvarlengtharray.h>
34#include <QtCore/qxptype_traits.h>
36#include <QtCore/q23utility.h>
42 template <
typename T,
template <
typename...>
typename... Templates>
45 template <
template <
typename...>
typename Template,
47 template <
typename...>
typename...
Templates>
51 template <
typename...>
typename Template,
52 template <
typename...>
typename...
Templates>
55 template <
typename T,
template <
typename...>
typename...
Templates>
58 template <
typename T,
typename =
void>
65 template <
typename T,
typename =
void>
82#ifndef QT_NO_SCOPED_POINTER
100 using Type = q20::remove_cvref_t<T>;
101 if constexpr (is_any_of<Type, std::optional>())
102 return t ?
std::addressof(*
std::forward<T>(t)) :
nullptr;
103 else if constexpr (std::is_pointer<Type>())
105 else if constexpr (is_smart_ptr<Type>())
107 else if constexpr (is_any_of<Type, std::reference_wrapper>())
108 return std::addressof(t.get());
110 return std::addressof(
std::forward<T>(t));
113 template <
typename T>
123 template <
typename T>
126 template <
typename T>
131 template <
typename T,
typename =
void>
135 template <
typename T>
138 template <
typename T>
141 template <
typename T,
typename =
void>
147 template <
typename T>
150 template <
typename T,
typename =
void>
152 template <
typename T>
155 template <
typename T>
158 template <
typename T>
159 static constexpr bool isValid(
const T &t)
noexcept
161 if constexpr (
std::is_array_v<T>)
163 else if constexpr (is_validatable<T>())
169 template <
typename T>
170 static decltype(
auto)
refTo(T&& t) {
173 using Type = q20::remove_cvref_t<T>;
174 if constexpr (is_any_of<T, std::optional>())
175 return *
std::forward<T>(t);
176 if constexpr (!is_wrapped<Type>() || is_any_unique_ptr<Type>())
177 return q23::forward_like<T>(*QRangeModelDetails::pointerTo(t));
182 template <
typename It>
183 auto key(It&& it) ->
decltype(it.key()) {
return std::forward<It>(it).key(); }
184 template <
typename It>
185 auto key(It&& it) ->
decltype((it->first)) {
return std::forward<It>(it)->first; }
187 template <
typename It>
188 auto value(It&& it) ->
decltype(it.value()) {
return std::forward<It>(it).value(); }
189 template <
typename It>
190 auto value(It&& it) ->
decltype((it->second)) {
return std::forward<It>(it)->second; }
196 template <
typename C>
199 template <
typename C>
202 template <
typename C>
203 static auto pos(C &&c,
int i)
211 template <
typename C,
typename =
void>
214 template <
typename C>
225 template <
typename C,
typename =
void>
228 template <
typename C>
237 template <
typename C,
typename =
void>
240 template <
typename C>
248 template <
typename C,
typename =
void>
251 template <
typename C>
262 template <
typename It>
264 std::is_swappable<
decltype(*
std::declval<It>())>,
265 std::is_base_of<
std::forward_iterator_tag,
269 template <
typename C,
typename =
void>
272 template <
typename C>
282 template <
typename C>
283 static void rotate(C& c,
int src,
int count,
int dst) {
285 using Container = std::remove_reference_t<
decltype(container)>;
288 const auto srcEnd =
std::next(srcBegin, count);
291 if constexpr (test_splice<Container>::value) {
292 if (dst > src && dst < src + count)
293 container.splice(srcBegin, container, dstBegin, srcEnd);
295 container.splice(dstBegin, container, srcBegin, srcEnd);
298 std::rotate(srcBegin, srcEnd, dstBegin);
300 std::rotate(dstBegin, srcBegin, srcEnd);
313 template <
typename C>
322 template <
typename C>
327 template <
typename C,
typename =
void>
329 template <
typename C>
332 template <
typename C,
typename =
void>
334 template <
typename C>
339 template <
typename C,
typename =
void>
350 template <
typename C>
391 template <
typename C>
393 template <
typename C>
399 template <
typename T>
408 static constexpr bool hasReadRole = qxp::is_detected_v<hasReadRole_test, ItemAccess, ItemType>;
413 static constexpr bool hasWriteRole = qxp::is_detected_v<hasWriteRole_test, ItemAccess, ItemType>;
415 template <
typename Access,
typename Test>
418 static constexpr bool hasFlags = qxp::is_detected_v<hasFlags_test, ItemAccess, ItemType>;
420 template <
typename Access,
typename Test>
422 static constexpr bool hasMimeTypes = qxp::is_detected_v<hasMimeTypes_test, ItemAccess, ItemType>;
426 static constexpr bool hasMimeData = qxp::is_detected_v<hasMimeData_test, ItemAccess, ItemType>;
428 template <
typename Access>
439 ItemAccess, ItemType>;
442 template <
typename Access>
455 ItemAccess, ItemType>;
462 template <
typename T,
typename =
void>
468 template <
typename T>
482 template <
typename row_type>
485 static constexpr bool hasRowFlags = qxp::is_detected_v<hasRowFlags_test, row_type>;
488 template <
typename row_type>
491 static constexpr bool hasMimeTypes = qxp::is_detected_v<hasMimeTypes_test, row_type>;
519 static constexpr bool hasDropMimeData = qxp::is_detected_v<hasDropMimeData_test, row_type>;
542 template <
typename T,
typename =
void>
559 template <
typename C,
typename Fn>
565 return std::forward<Fn>(fn)(
std::forward<C>(container));
568 template <
typename Fn>
574 int columnIndex = -1;
577 return std::forward<Fn>(fn)(firstIndex.siblingAtColumn(++columnIndex),
585 template <
typename T>
605 template <
typename C,
typename F>
640 template <
typename Fn>
660 template <
typename C,
typename F>
672 template <
typename Fn>
688 template <
typename T>
709 template <
typename C,
typename F>
729 template <
typename Fn>
736 template <
typename T,
typename =
void>
739 template <
typename That>
742 return That::roleNamesForSimpleType();
749 template <
typename That>
756 template <
typename T>
762 template <
typename T>
765 template <
typename That>
772 template <
typename T>
776 template <
typename Range>
782 auto newRow() ->
decltype(R{}) {
return R{}; }
785 template <
typename Range>
813 template <
typename Range,
821 template <
typename Range>
824 template <
typename R >
825 auto parentRow(
const R& row)
const ->
decltype(row.parentRow())
827 return row.parentRow();
830 template <
typename R >
831 auto setParentRow(R &row, R* parent) ->
decltype(row.setParentRow(parent))
833 row.setParentRow(parent);
836 template <
typename R >
837 auto childRows(
const R &row)
const ->
decltype(row.childRows())
839 return row.childRows();
842 template <
typename R >
845 return row.childRows();
849 template <
typename P,
typename R>
852 template <
typename P,
typename R>
855 template <
typename P,
typename R>
858 template <
typename P,
typename R>
861 template <
typename P,
typename R>
865 template <
typename P,
typename R>
868 template <
typename P,
typename R>
871 template <
typename P,
typename R>
874 template <
typename P,
typename =
void>
876 template <
typename P>
880 template <
typename P,
typename R,
typename =
void>
882 template <
typename P,
typename R>
887 template <
typename Range,
899 template <
typename Range>
912 template <
typename Range,
typename Protocol>
936 template <
typename Entry>
941 template<
typename T,
typename =
void>
952 if constexpr (QRangeModelDetails::is_owning_or_raw_pointer<entry_type>()) {
958 qDebug(
"QRangeModel::mimeData: null-entry, test with isValid before accessing");
960 constexpr bool is_constexpr_default_constructible_v =
961 is_constexpr_default_constructible<wrapped_entry>::value;
962 if constexpr (is_constexpr_default_constructible_v) {
963 Q_CONSTINIT
static const wrapped_entry emptyDefault;
967 static const wrapped_entry emptyDefault;
972 return std::as_const(QRangeModelDetails::refTo(m_entry));
977 template <
std::size_t N>
980 if constexpr (N == 0)
981 return entry.entry();
982 else if constexpr (N == 1)
983 return entry.index();
1000template <
typename T>
1012 template <
typename Entry>
1025 return lhs.m_row == rhs.m_row && lhs.m_column == rhs.m_column;
1061 template <
bool cacheProperties,
bool itemsAreQObjects>
1093 return lhs.sender == rhs.sender && lhs
.role == rhs
.role;
1097 return qHashMulti(seed, c.sender, c
.role);
1121 template <
typename ModelStorage,
typename =
void>
1140 template <
typename ModelStorage,
typename PropertyStorage>
1151 template <
typename Model = ModelStorage>
1187 bool setHeaderData(
int section, Qt::Orientation orientation,
const QVariant &data,
int role);
1188 bool setData(
const QModelIndex &index,
const QVariant &data,
int role);
1189 bool setItemData(
const QModelIndex &index,
const QMap<
int, QVariant> &data);
1193 bool moveColumns(
const QModelIndex &sourceParent,
int sourceColumn,
int count,
const QModelIndex &destParent,
int destColumn);
1196 bool moveRows(
const QModelIndex &sourceParent,
int sourceRow,
int count,
const QModelIndex &destParent,
int destRow);
1209 void multiData(
const QModelIndex &index, QModelRoleDataSpan roleDataSpan)
const;
1213 void sort(
int column, Qt::SortOrder order);
1215 int hits, Qt::MatchFlags flags)
const;
1221 const QModelIndex &parent)
const;
1222 bool dropMimeData(
const QMimeData *data, Qt::DropAction action,
int row,
int column,
1223 const QModelIndex &parent);
1267 template <
typename C>
1308 friend class QRangeModelPrivate;
1311 QRangeModel *m_rangeModel;
1315 : m_rangeModel(itemModel)
1321 inline void dataChanged(
const QModelIndex &from,
const QModelIndex &to,
1322 const QList<
int> &roles);
1329 inline bool beginMoveColumns(
const QModelIndex &sourceParent,
int sourceFirst,
int sourceLast,
1330 const QModelIndex &destParent,
int destRow);
1332 inline void beginInsertRows(
const QModelIndex &parent,
int start,
int count);
1334 inline void beginRemoveRows(
const QModelIndex &parent,
int start,
int count);
1336 inline bool beginMoveRows(
const QModelIndex &sourceParent,
int sourceFirst,
int sourceLast,
1337 const QModelIndex &destParent,
int destRow);
1343 const QCollator *collator);
1361 QRangeModelDetails::AutoConnectContext *context,
1362 int role,
const QMetaProperty &property);
1364 QRangeModelDetails::AutoConnectContext *context,
1365 int role,
const QMetaProperty &property);
1367 QRangeModelDetails::AutoConnectContext *context,
1368 const QHash<
int, QMetaProperty> &properties);
1370 QRangeModelDetails::AutoConnectContext *context,
1371 const QHash<
int, QMetaProperty> &properties);
1378 Qt::MatchFlags flags);
1380 Qt::MatchFlags flags,
const QCollator &collator);
1381 static bool matchValue(
const QVariant &itemData,
const QVariant &value, Qt::MatchFlags flags,
1382 const QCollator &collator)
1384 if ((flags & Qt::MatchTypeMask) == Qt::MatchExactly)
1385 return itemData == value;
1386 return matchValue(itemData.toString(), value, flags, collator);
1392template <
typename Structure,
typename Range,
1393 typename Protocol = QRangeModelDetails::table_protocol_t<Range>>
1429 "Currently, std::optional is not supported for ranges and rows, as "
1430 "it has range semantics in c++26. Once the required behavior is clarified, "
1431 "std::optional for ranges and rows will be supported.");
1438 Structure&
that() {
return static_cast<Structure &>(*
this); }
1439 const Structure&
that()
const {
return static_cast<
const Structure &>(*
this); }
1441 template <
typename C>
1442 static constexpr int size(
const C &c)
1447 if constexpr (QRangeModelDetails::test_size<C>()) {
1449 return int(size(c));
1451#if defined(__cpp_lib_ranges)
1452 using std::ranges::distance;
1454 using std::distance;
1456 using container_type = std::conditional_t<QRangeModelDetails::range_traits<C>::has_cbegin,
1457 const QRangeModelDetails::wrapped_t<C>,
1458 QRangeModelDetails::wrapped_t<C>>;
1459 container_type& container =
const_cast<container_type &>(
QRangeModelDetails::refTo(c));
1475 return this->blockDataChangedDispatch();
1485 template <
typename T>
1505 {
return lhs.n == rhs.n; }
1507 {
return !(lhs == rhs); }
1518 "The range holding a move-only row-type must support insert(pos, start, end)");
1526 return range_features::is_mutable && row_features::is_mutable
1527 && std::is_reference_v<row_reference>
1528 && Structure::is_mutable_impl;
1545 versionNumber = QT_VERSION;
1556 if (row < 0 || column < 0 || column >= columnCount(parent)
1557 || row >= rowCount(parent)) {
1561 return that().indexImpl(row, column, parent);
1566 if (row == index.row() && column == index.column())
1570 if (column >=
this->columnCount({}))
1573 if (row == index.row())
1574 return this->createIndex(row, column, index.constInternalPointer());
1576 const_row_ptr parentRow =
static_cast<const_row_ptr>(index.constInternalPointer());
1577 const auto siblingCount = size(that().childrenOf(parentRow));
1578 if (row < 0 || row >=
int(siblingCount))
1580 return this->createIndex(row, column, parentRow);
1585 if (!index.isValid()) {
1586 if constexpr (isMutable())
1587 return Qt::ItemIsDropEnabled;
1589 return Qt::NoItemFlags;
1593 std::optional<Qt::ItemFlags> customFlags;
1594 if constexpr (QRangeModelDetails::hasRowFlags<wrapped_row_type>) {
1595 const_row_reference row = rowData(index);
1597 customFlags = QRangeModelDetails::QRangeModelRowOptions<wrapped_row_type>::flags(
1598 QRangeModelDetails::refTo(row)
1603 readAt(index, [&customFlags](
auto &&ref){
1605 using wrapped_value_type = q20::remove_cvref_t<QRangeModelDetails::wrapped_t<
decltype(ref)>>;
1606 if constexpr (QRangeModelDetails::item_access<wrapped_value_type>::hasFlags) {
1607 using ItemAccess = QRangeModelDetails::QRangeModelItemAccess<wrapped_value_type>;
1609 customFlags = ItemAccess::flags(QRangeModelDetails::refTo(ref));
1616 Qt::ItemFlags f = customFlags ? *customFlags : Structure::defaultFlags();
1618 if constexpr (!isMutable())
1619 f &= ~(Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
1621 f |= Qt::ItemNeverHasChildren;
1626 if (!
this->itemModel().mimeTypes().isEmpty()) {
1627 f |= Qt::ItemIsDragEnabled;
1628 if constexpr (isMutable())
1629 f |= Qt::ItemIsDropEnabled;
1632 if constexpr (QRangeModelDetails::is_owning_or_raw_pointer<row_type>()) {
1634 const_row_reference row = rowData(index);
1635 if (!QRangeModelDetails::isValid(row))
1636 f &= ~Qt::ItemIsDragEnabled;
1639 if constexpr (isMutable()) {
1644 if constexpr (row_traits::hasMetaObject) {
1645 if (index.column() < row_traits::fixed_size()) {
1646 const QMetaObject mo = wrapped_row_type::staticMetaObject;
1647 const QMetaProperty prop = mo.property(index.column() + mo.propertyOffset());
1648 if (prop.isWritable())
1649 f |= Qt::ItemIsEditable;
1652 using item_type =
typename row_traits::item_type;
1653 if constexpr (QRangeModelDetails::is_owning_or_raw_pointer<item_type>()) {
1655 if (!readAt(index, [](
auto &&i){
return QRangeModelDetails::isValid(i); }))
1656 f &= ~Qt::ItemIsDragEnabled;
1658 f |= Qt::ItemIsEditable;
1659 }
else if constexpr (std::is_reference_v<row_reference> && !std::is_const_v<row_reference>) {
1662 const_row_reference row = rowData(index);
1663 row_reference mutableRow =
const_cast<row_reference>(row);
1665 row_traits::for_element_at(mutableRow, index.column(), [&f](
auto &&ref){
1666 using target_type =
decltype(ref);
1667 if constexpr (QRangeModelDetails::is_owning_or_raw_pointer<target_type>()) {
1669 if (!QRangeModelDetails::isValid(ref))
1670 f &= ~Qt::ItemIsDragEnabled;
1672 if constexpr (std::is_const_v<std::remove_reference_t<target_type>>)
1673 f &= ~Qt::ItemIsEditable;
1674 else if constexpr (std::is_lvalue_reference_v<target_type>)
1675 f |= Qt::ItemIsEditable;
1680 f &= ~Qt::ItemIsEditable;
1690 if constexpr (QRangeModelDetails::hasHeaderData<wrapped_row_type>) {
1691 if (orientation == Qt::Horizontal) {
1692 result = QRangeModelDetails::QRangeModelRowOptions<wrapped_row_type>::headerData(
1695 if (result.isValid())
1700 if (role != Qt::DisplayRole || orientation != Qt::Horizontal
1701 || section < 0 || section >= columnCount({})) {
1702 return this->itemModel().QAbstractItemModel::headerData(section, orientation, role);
1705 result = row_traits::column_name(section);
1706 if (!result.isValid())
1707 result =
this->itemModel().QAbstractItemModel::headerData(section, orientation, role);
1713 if (!index.isValid())
1716 QModelRoleData result(role);
1717 multiData(index, result);
1718 return std::move(result.data());
1723 return role == Qt::RangeModelDataRole
1724 || role == Qt::RangeModelAdapterRole;
1729 return role == Qt::DisplayRole || role == Qt::EditRole;
1734 QMap<
int, QVariant> result;
1736 if (index.isValid()) {
1738 if (!readAt(index, [&result](
const auto &value) {
1739 if constexpr (std::is_convertible_v<
decltype(value),
decltype(result)>) {
1745 const auto roles =
this->itemModel().roleNames().keys();
1746 QVarLengthArray<QModelRoleData, 16> roleDataArray;
1747 roleDataArray.reserve(roles.size());
1748 for (
auto role : roles) {
1749 if (isRangeModelRole(role))
1751 roleDataArray.emplace_back(role);
1753 QModelRoleDataSpan roleDataSpan(roleDataArray);
1754 multiData(index, roleDataSpan);
1756 for (QModelRoleData &roleData : roleDataSpan) {
1757 if (roleData.data().isValid())
1758 result[roleData.role()] = std::move(roleData.data());
1767 template <
typename value_type>
1770 using multi_role = QRangeModelDetails::is_multi_role<value_type>;
1771 using wrapped_value_type = QRangeModelDetails::wrapped_t<value_type>;
1773 const auto readModelData = [&value](QModelRoleData &roleData){
1775 roleData.clearData();
1779 const int role = roleData.role();
1780 if (role == Qt::RangeModelDataRole) {
1784 if constexpr (std::is_copy_assignable_v<wrapped_value_type>)
1785 roleData.setData(QVariant::fromValue(QRangeModelDetails::refTo(value)));
1787 roleData.setData(QVariant::fromValue(QRangeModelDetails::pointerTo(value)));
1788 }
else if (role == Qt::RangeModelAdapterRole) {
1790 if constexpr (
std::is_copy_assignable_v<value_type>)
1791 roleData.setData(QVariant::fromValue(value));
1793 roleData.setData(QVariant::fromValue(QRangeModelDetails::pointerTo(value)));
1800 if constexpr (QRangeModelDetails::item_access<wrapped_value_type>::hasReadRole) {
1801 using ItemAccess = QRangeModelDetails::QRangeModelItemAccess<wrapped_value_type>;
1802 for (
auto &roleData : roleDataSpan) {
1803 if (!readModelData(roleData)) {
1804 roleData.setData(ItemAccess::readRole(QRangeModelDetails::refTo(value),
1808 }
else if constexpr (multi_role()) {
1809 const auto roleNames = [
this]() -> QHash<
int, QByteArray> {
1811 if constexpr (!multi_role::int_key)
1812 return that->itemModel().roleNames();
1816 using key_type =
typename value_type::key_type;
1817 for (
auto &roleData : roleDataSpan) {
1818 const auto &it = [&roleNames, &value, role = roleData.role()]{
1819 Q_UNUSED(roleNames);
1820 if constexpr (multi_role::int_key)
1821 return value.find(key_type(role));
1823 return value.find(roleNames.value(role));
1825 if (it != QRangeModelDetails::adl_end(value))
1826 roleData.setData(QRangeModelDetails::value(it));
1828 roleData.clearData();
1830 }
else if constexpr (has_metaobject<value_type>) {
1831 if (row_traits::fixed_size() <= 1) {
1832 for (
auto &roleData : roleDataSpan) {
1833 if (!readModelData(roleData)) {
1834 roleData.setData(that->readRole(index, roleData.role(),
1835 QRangeModelDetails::pointerTo(value)));
1838 }
else if (index.column() <= row_traits::fixed_size()) {
1839 for (
auto &roleData : roleDataSpan) {
1840 const int role = roleData.role();
1841 if (isPrimaryRole(role)) {
1842 roleData.setData(that->readProperty(index,
1843 QRangeModelDetails::pointerTo(value)));
1845 roleData.clearData();
1850 for (
auto &roleData : roleDataSpan) {
1851 const int role = roleData.role();
1852 if (isPrimaryRole(role) || isRangeModelRole(role))
1853 roleData.setData(read(value));
1855 roleData.clearData();
1866 void multiData(
const QModelIndex &index, QModelRoleDataSpan roleDataSpan)
const
1868 if (!readAt(index,
ItemReader{index, roleDataSpan,
this})) {
1869 for (
auto &roleData : roleDataSpan)
1870 roleData.clearData();
1874 bool setData(
const QModelIndex &index,
const QVariant &data,
int role)
1876 if (!index.isValid())
1879 if constexpr (isMutable()) {
1880 auto emitDataChanged = qScopeGuard([
this, &index, role]{
1881 Q_EMIT
this->dataChanged(index, index,
1882 role == Qt::EditRole || role == Qt::RangeModelDataRole
1883 || role == Qt::RangeModelAdapterRole
1884 ? QList<
int>{} : QList<
int>{role});
1889 const auto writeData = [
this, column = index.column(), &data, role](
auto &&target) ->
bool {
1890 using value_type = q20::remove_cvref_t<
decltype(target)>;
1891 using wrapped_value_type = QRangeModelDetails::wrapped_t<value_type>;
1892 using multi_role = QRangeModelDetails::is_multi_role<value_type>;
1894 if constexpr (std::conjunction_v<QRangeModelDetails::is_any_owning_ptr<value_type>,
1895 std::is_default_constructible<wrapped_value_type>>) {
1897 target.reset(
new wrapped_value_type);
1900 auto setRangeModelDataRole = [&target, &data]{
1901 constexpr auto targetMetaType = QMetaType::fromType<value_type>();
1902 const auto dataMetaType = data.metaType();
1903 constexpr bool isWrapped = QRangeModelDetails::is_wrapped<value_type>();
1904 if constexpr (!std::is_copy_assignable_v<wrapped_value_type>) {
1908 if constexpr (isWrapped) {
1909 constexpr bool is_raw_pointer = std::is_pointer_v<value_type>;
1910 if constexpr (!is_raw_pointer && std::is_copy_assignable_v<value_type>) {
1911 if (data.canConvert(targetMetaType)) {
1912 target = data.value<value_type>();
1915 }
else if constexpr (is_raw_pointer) {
1917 target = data.value<value_type>();
1926 }
else if constexpr (isWrapped) {
1931 if (
const auto mt = QMetaType::fromType<wrapped_value_type>();
1932 data.canConvert(mt)) {
1933 targetRef = data.value<wrapped_value_type>();
1935 }
else if (
const auto mtp = QMetaType::fromType<wrapped_value_type *>();
1936 data.canConvert(mtp)) {
1937 targetRef = *data.value<wrapped_value_type *>();
1941 }
else if (targetMetaType == dataMetaType) {
1942 QRangeModelDetails::refTo(target) = data.value<value_type>();
1944 }
else if (dataMetaType.flags() & QMetaType::PointerToGadget) {
1945 QRangeModelDetails::refTo(target) = *data.value<value_type *>();
1949 qCritical(
"Not able to assign %s to %s",
1950 qPrintable(QDebug::toString(data)), targetMetaType.name());
1955 if constexpr (QRangeModelDetails::item_access<wrapped_value_type>::hasWriteRole) {
1956 using ItemAccess = QRangeModelDetails::QRangeModelItemAccess<wrapped_value_type>;
1957 if (isRangeModelRole(role))
1958 return setRangeModelDataRole();
1959 return ItemAccess::writeRole(QRangeModelDetails::refTo(target), data, role);
1960 }
else if constexpr (has_metaobject<value_type>) {
1961 if (row_traits::fixed_size() <= 1) {
1962 if (isRangeModelRole(role))
1963 return setRangeModelDataRole();
1965 }
else if (column <= row_traits::fixed_size()
1966 && (isPrimaryRole(role) || isRangeModelRole(role))) {
1969 }
else if constexpr (multi_role::value) {
1970 Qt::ItemDataRole roleToSet = Qt::ItemDataRole(role);
1973 const auto roleNames = [
this]() -> QHash<
int, QByteArray> {
1975 if constexpr (!multi_role::int_key)
1976 return this->itemModel().roleNames();
1980 if (role == Qt::EditRole) {
1981 if constexpr (multi_role::int_key) {
1982 if (target.find(roleToSet) == target.end())
1983 roleToSet = Qt::DisplayRole;
1985 if (target.find(roleNames.value(roleToSet)) == target.end())
1986 roleToSet = Qt::DisplayRole;
1989 if constexpr (multi_role::int_key)
1990 return write(target[roleToSet], data);
1992 return write(target[roleNames.value(roleToSet)], data);
1993 }
else if (isPrimaryRole(role) || isRangeModelRole(role)) {
1994 return write(target, data);
1999 if (!writeAt(index, writeData)) {
2000 emitDataChanged.dismiss();
2003 if (isRangeModelRole(role) &&
this->autoConnectPolicy() == AutoConnectPolicy::Full) {
2004 if (QObject *item = data.value<QObject *>())
2005 Self::connectProperties(index, item, m_data.context, m_data.properties);
2013 template <
typename LHS,
typename RHS>
2016 if constexpr (
std::is_pointer_v<RHS>)
2018 else if constexpr (
std::is_assignable_v<LHS, RHS>)
2019 org =
std::forward<RHS>(copy);
2023 template <
typename LHS,
typename RHS>
2026 updateTarget(*org,
std::forward<RHS>(copy));
2029 bool setItemData(
const QModelIndex &index,
const QMap<
int, QVariant> &data)
2031 if (!index.isValid() || data.isEmpty())
2034 if constexpr (isMutable()) {
2035 auto emitDataChanged = qScopeGuard([
this, &index, &data]{
2036 Q_EMIT
this->dataChanged(index, index, data.keys());
2042 auto writeItemData = [
this, &tried, &data](
auto &target) ->
bool {
2044 using value_type = q20::remove_cvref_t<
decltype(target)>;
2045 using multi_role = QRangeModelDetails::is_multi_role<value_type>;
2046 using wrapped_value_type = QRangeModelDetails::wrapped_t<value_type>;
2050 auto makeCopy = [](
const value_type &original){
2051 if constexpr (!std::is_copy_assignable_v<wrapped_value_type>)
2053 else if constexpr (std::is_pointer_v<
decltype(original)>)
2055 else if constexpr (std::is_copy_assignable_v<value_type>)
2061 const auto roleNames =
this->itemModel().roleNames();
2063 if constexpr (QRangeModelDetails::item_access<wrapped_value_type>::hasWriteRole) {
2065 using ItemAccess = QRangeModelDetails::QRangeModelItemAccess<wrapped_value_type>;
2066 const auto roles = roleNames.keys();
2067 auto targetCopy = makeCopy(target);
2068 for (
int role : roles) {
2069 if (!ItemAccess::writeRole(QRangeModelDetails::refTo(targetCopy),
2070 data.value(role), role)) {
2074 updateTarget(target,
std::move(targetCopy));
2076 }
else if constexpr (multi_role()) {
2077 using key_type =
typename value_type::key_type;
2079 const auto roleName = [&roleNames](
int role) {
2080 return roleNames.value(role);
2085 if constexpr (!multi_role::int_key)
2087 auto invalid =
std::find_if(data.keyBegin(), data.keyEnd(),
2088 [&roleName](
int role) {
return roleName(role).isEmpty(); }
2091 if (invalid != data.keyEnd()) {
2093 qWarning(
"No role name set for %d", *invalid);
2099 for (
auto &&[role, value] : data.asKeyValueRange()) {
2100 if constexpr (multi_role::int_key)
2101 target[
static_cast<key_type>(role)] = value;
2103 target[QString::fromUtf8(roleName(role))] = value;
2106 }
else if constexpr (has_metaobject<value_type>) {
2107 if (row_traits::fixed_size() <= 1) {
2109 auto targetCopy = makeCopy(target);
2110 for (
auto &&[role, value] : data.asKeyValueRange()) {
2111 if (isRangeModelRole(role))
2113 if (!writeRole(role, QRangeModelDetails::pointerTo(targetCopy), value)) {
2114 const QByteArray roleName = roleNames.value(role);
2116 qWarning(
"Failed to write value '%s' to role '%s'",
2117 qPrintable(QDebug::toString(value)), roleName.data());
2122 updateTarget(target,
std::move(targetCopy));
2129 if (!writeAt(index, writeItemData)) {
2130 emitDataChanged.dismiss();
2132 return this->itemModel().QAbstractItemModel::setItemData(index, data);
2141 if (!index.isValid())
2144 if constexpr (isMutable()) {
2145 auto emitDataChanged = qScopeGuard([
this, &index]{
2146 Q_EMIT
this->dataChanged(index, index, {});
2149 auto clearData = [column = index.column()](
auto &&target) {
2150 if constexpr (row_traits::hasMetaObject) {
2151 if (row_traits::fixed_size() <= 1) {
2154 }
else if (column <= row_traits::fixed_size()) {
2164 if (!writeAt(index, clearData)) {
2165 emitDataChanged.dismiss();
2176 using item_type = QRangeModelDetails::wrapped_t<
typename row_traits::item_type>;
2177 using item_traits =
typename QRangeModelDetails::item_traits<item_type>;
2178 return item_traits::roleNames(
this);
2185 return row_traits::for_each_element(QRangeModelDetails::refTo(row),
2186 this->itemModel().index(rowIndex, 0, parent),
2187 [
this](
const QModelIndex &index,
const QObject *item) {
2188 if constexpr (isMutable())
2189 return Self::connectProperties(index, item, m_data.context, m_data.properties);
2191 return Self::connectPropertiesConst(index, item, m_data.context, m_data.properties);
2199 row_traits::for_each_element(QRangeModelDetails::refTo(row),
2200 this->itemModel().index(rowIndex, 0, parent),
2201 [
this](
const QModelIndex &,
const QObject *item) {
2202 m_data.connections.removeIf([item](
const auto &connection) {
2203 return connection.sender == item;
2212 using item_type = std::remove_pointer_t<
typename row_traits::item_type>;
2213 using Mapping = QRangeModelDetails::AutoConnectContext::AutoConnectMapping;
2215 delete m_data.context;
2216 m_data.connections = {};
2217 switch (
this->autoConnectPolicy()) {
2218 case AutoConnectPolicy::None:
2219 m_data.context =
nullptr;
2221 case AutoConnectPolicy::Full:
2222 m_data.context =
new QRangeModelDetails::AutoConnectContext(&
this->itemModel());
2224 m_data.properties = QRangeModelImplBase::roleProperties(
this->itemModel(),
2225 item_type::staticMetaObject);
2226 m_data.context->mapping = Mapping::Roles;
2228 m_data.properties = QRangeModelImplBase::columnProperties(wrapped_row_type::staticMetaObject);
2229 m_data.context->mapping = Mapping::Columns;
2231 if (!m_data.properties.isEmpty())
2232 that().autoConnectPropertiesImpl();
2234 case AutoConnectPolicy::OnRead:
2235 m_data.context =
new QRangeModelDetails::AutoConnectContext(&
this->itemModel());
2237 m_data.context->mapping = Mapping::Roles;
2239 m_data.properties = QRangeModelImplBase::columnProperties(wrapped_row_type::staticMetaObject);
2240 m_data.context->mapping = Mapping::Columns;
2246 qWarning(
"All items in the range must be QObject subclasses");
2260 template <
typename C,
typename LessThan>
2262 static constexpr bool hasSortMember = qxp::is_detected_v<sortMember_test, range_type, Compare>;
2280 template <
typename Item>
2281 auto operator()(
const Item &lhs,
const Item &rhs)
const
2283 auto ordering = compare(lhs, rhs);
2284 return m_order == Qt::AscendingOrder ? ordering < 0 : ordering > 0;
2287 template <
typename Item>
2288 auto compare(
const Item &lhs,
const Item &rhs)
const
2290 using value_type = QRangeModelDetails::wrapped_t<Item>;
2291 using multi_role = QRangeModelDetails::is_multi_role<value_type>;
2293 if constexpr (QRangeModelDetails::item_access<value_type>::hasReadRole
2294 || multi_role() || has_metaobject<value_type>) {
2302 Q_ASSERT(!reader.index.isValid());
2304 const QVariant lhsVariant =
std::move(result.data());
2306 const QVariant rhsVariant =
std::move(result.data());
2307 return QRangeModelImplBase::compareData(lhsVariant, rhsVariant, collator);
2308 }
else if constexpr (std::is_same_v<QVariant, value_type>) {
2309 return QRangeModelImplBase::compareData(lhs, rhs, collator);
2310 }
else if constexpr (QtOrderingPrivate::CompareThreeWayTester::hasCompareThreeWay_v
2311 <value_type, value_type>) {
2313 if constexpr (hasCollatedCompare<value_type>) {
2315 using ordering =
decltype(qCompareThreeWay(lhs, rhs));
2316 int res = collator->compare(lhs, rhs);
2318 return ordering::less;
2320 return ordering::greater;
2321 return ordering::equal;
2324 return qCompareThreeWay(lhs, rhs);
2332 return that->readAt(
that->index(0, 0, {}), [
this](
const auto &item){
2337 using ordering =
decltype(compare(item, item));
2340 const QMetaType itemtype = QMetaType::fromType<QRangeModelDetails::wrapped_t<
2341 q20::remove_cvref_t<
decltype(item)>>
2343 qCritical(
"QRangeModel: Cannot compare items of type %s in column %d!",
2344 itemtype.name(), m_index.column());
2355 template <
typename Item>
2363 return std::nullopt;
2373 void sort(
int column, Qt::SortOrder order)
2375 if constexpr (isMutable() && std::is_swappable_v<row_type>) {
2376 if (rowCount({}) < 2 || column >= columnCount({}))
2378 Compare compare(
this, column, order);
2379 if (!compare.checkComparable())
2382 this->beginLayoutChange();
2383 QScopeGuard endLayoutChange([
this]{
this->endLayoutChange(); });
2384 that().sortImpl([&compare](
const auto &leftRow,
const auto &rightRow) {
2385 if (
auto anyInvalid =
Compare::compareInvalid(leftRow, rightRow))
2387 return row_traits::for_element_at(leftRow, compare.m_index.column(),
2388 [&rightRow, &compare](
const auto &leftItem){
2389 return row_traits::for_element_at(rightRow, compare.m_index.column(),
2390 [&leftItem, &compare](
const auto &rightItem){
2393 if constexpr (std::is_same_v<
decltype(leftItem),
decltype(rightItem)>) {
2394 if (
auto anyInvalid = Compare::compareInvalid(leftItem, rightItem))
2396 return compare(QRangeModelDetails::refTo(leftItem),
2397 QRangeModelDetails::refTo(rightItem));
2408 template <
typename LessThan>
2409 void sortSubRange(range_type &range, row_ptr expectedParent,
const LessThan &lessThan)
2416 QModelIndexList persistentIndexes =
this->persistentIndexList();
2417 that().prunePersistentIndexList(persistentIndexes, expectedParent);
2419 if (persistentIndexes.isEmpty()) {
2420 using It =
typename range_features::iterator;
2421 constexpr bool is_random_access = std::is_base_of_v<std::random_access_iterator_tag,
2422 typename std::iterator_traits<It>::iterator_category>;
2424 if constexpr (
Compare::hasSortMember) {
2425 range.sort(lessThan);
2427 }
else if constexpr (is_random_access) {
2428 std::stable_sort(begin, end, lessThan);
2441 const int rangeSize = size(range);
2444 std::vector<SortTracker> tracked;
2445 tracked.reserve(rangeSize);
2446 std::vector<
int> newRows;
2447 newRows.resize(rangeSize);
2451 for (
auto &&it =
std::move_iterator(begin); it !=
std::move_iterator(end); ++it)
2452 tracked.emplace_back(SortTracker{*it, ++row});
2455 std::stable_sort(tracked.begin(), tracked.end(),
2456 [&lessThan](
const SortTracker &lhs,
const SortTracker &rhs){
2457 return lessThan(lhs.row, rhs.row);
2462 auto sorted =
std::move_iterator(tracked.begin());
2464 qsizetype changedIndexCount = 0;
2465 for (
int newIndex = 0; newIndex < rangeSize; ++write, ++sorted, ++newIndex) {
2466 auto &&tracker = *sorted;
2467 changedIndexCount += (tracker.index != newIndex);
2468 *write =
std::move(tracker.row);
2469 newRows[tracker.index] = newIndex;
2474 tracked.shrink_to_fit();
2477 for (
const auto &fromIndex : std::as_const(persistentIndexes)) {
2478 const int newRow = newRows.at(fromIndex.row());
2479 if (fromIndex.row() == newRow)
2481 const QModelIndex toIndex = that().indexImpl(newRow,
2483 fromIndex.parent());
2484 this->changePersistentIndex(fromIndex, toIndex);
2489 Qt::MatchFlags flags)
const
2491 QCollator collator =
this->matchCollator();
2492 collator.setCaseSensitivity(flags.testFlag(Qt::MatchCaseSensitive) ? Qt::CaseSensitive
2493 : Qt::CaseInsensitive);
2494 return that().matchImpl(start, role,
2495 QRangeModelImplBase::convertMatchValue(value, flags), hits,
2499 bool matchRow(const_row_reference row,
const QModelIndex &index,
int role,
const QVariant &value,
2500 Qt::MatchFlags flags,
const QCollator &collator)
const
2502 const uint matchType = (flags & Qt::MatchTypeMask).toInt();
2504 return row_traits::for_element_at(row, index.column(), [&](
const auto &element) {
2505 using value_type = q20::remove_cvref_t<
decltype(element)>;
2506 using wrapped_value_type = QRangeModelDetails::wrapped_t<value_type>;
2507 using multi_role = QRangeModelDetails::is_multi_role<value_type>;
2509 if constexpr (QRangeModelDetails::item_access<wrapped_value_type>::hasReadRole
2510 || multi_role() || has_metaobject<value_type>) {
2511 QModelRoleData roleData(role);
2512 ItemReader reader{index, roleData,
this};
2514 return QRangeModelImplBase::matchValue(roleData.data(), value, flags, collator);
2515 }
else if constexpr (std::is_same_v<wrapped_value_type, QVariant>) {
2516 return QRangeModelImplBase::matchValue(element, value, flags, collator);
2518 constexpr QMetaType mt = QMetaType::fromType<wrapped_value_type>();
2519 if (mt == value.metaType()) {
2520 if (matchType == Qt::MatchExactly)
2521 return mt.equals(QRangeModelDetails::pointerTo(element), value.constData());
2522 else if constexpr (std::is_same_v<wrapped_value_type, QString>)
2523 return QRangeModelImplBase::matchValue(element, value, flags, collator);
2525 return QRangeModelImplBase::matchValue(QVariant::fromValue(QRangeModelDetails::refTo(element)),
2526 value, flags, collator);
2533 template <
typename InsertFn>
2538 range_type *
const children = childRange(parent);
2542 this->beginInsertColumns(parent, column, column + count - 1);
2544 for (
auto &child : *children) {
2545 auto it = QRangeModelDetails::pos(child, column);
2546 (
void)insertFn(QRangeModelDetails::refTo(child), it, count);
2549 this->endInsertColumns();
2555 if (m_data.context &&
this->autoConnectPolicy() == AutoConnectPolicy::Full) {
2556 for (
int r = 0; r < that().rowCount(parent); ++r) {
2557 for (
int c = column; c < column + count; ++c) {
2558 const QModelIndex index = that().index(r, c, parent);
2559 writeAt(index, [
this, &index](QObject *item){
2560 return Self::connectProperties(index, item,
2561 m_data.context, m_data.properties);
2573 if constexpr (dynamicColumns() && isMutable() && row_features::has_insert) {
2574 return doInsertColumns(column, count, parent, [](
auto &row,
auto it,
int n){
2575 row.insert(it, n, {});
2585 if constexpr (dynamicColumns() && isMutable() && row_features::has_erase) {
2586 if (column < 0 || column + count > columnCount(parent))
2589 range_type *
const children = childRange(parent);
2594 if (m_data.context &&
this->autoConnectPolicy() == AutoConnectPolicy::OnRead) {
2595 for (
int r = 0; r < that().rowCount(parent); ++r) {
2596 for (
int c = column; c < column + count; ++c) {
2597 const QModelIndex index = that().index(r, c, parent);
2598 writeAt(index, [
this](QObject *item){
2599 m_data.connections.removeIf([item](
const auto &connection) {
2600 return connection.sender == item;
2609 this->beginRemoveColumns(parent, column, column + count - 1);
2610 for (
auto &child : *children) {
2611 const auto start = QRangeModelDetails::pos(child, column);
2612 QRangeModelDetails::refTo(child).erase(start, std::next(start, count));
2614 this->endRemoveColumns();
2620 bool moveColumns(
const QModelIndex &sourceParent,
int sourceColumn,
int count,
2621 const QModelIndex &destParent,
int destColumn)
2624 if (sourceParent != destParent)
2626 if constexpr (isMutable() && (row_features::has_rotate || row_features::has_splice)) {
2627 if (!Structure::canMoveColumns(sourceParent, destParent))
2633 range_type *
const children = childRange(sourceParent);
2637 if (!
this->beginMoveColumns(sourceParent, sourceColumn, sourceColumn + count - 1,
2638 destParent, destColumn)) {
2642 for (
auto &child : *children)
2643 QRangeModelDetails::rotate(child, sourceColumn, count, destColumn);
2645 this->endMoveColumns();
2652 template <
typename InsertFn>
2653 bool doInsertRows(
int row,
int count,
const QModelIndex &parent, InsertFn &&insertFn)
2655 range_type *children = childRange(parent);
2659 this->beginInsertRows(parent, row, row + count - 1);
2661 row_ptr parentRow = parent.isValid()
2664 (
void)
std::forward<InsertFn>(insertFn)(*children, parentRow, row, count);
2668 that().resetParentInChildren(children);
2670 this->endInsertRows();
2676 if (m_data.context &&
this->autoConnectPolicy() == AutoConnectPolicy::Full) {
2678 const auto end =
std::next(begin, count);
2680 for (
auto it = begin; it != end; ++it, ++rowIndex)
2681 autoConnectPropertiesInRow(*it, rowIndex, parent);
2691 return doInsertRows(row, count, parent,
2692 [
this](range_type &children, row_ptr parentRow,
int r,
int n){
2696 if constexpr (range_features::has_insert_range) {
2699 auto start = children.insert(pos, n,
nullptr);
2702 children.insert(pos, n,
std::move(*generator));
2711 bool removeRows(
int row,
int count,
const QModelIndex &parent = {})
2714 const int prevRowCount = rowCount(parent);
2715 if (row < 0 || row + count > prevRowCount)
2718 range_type *children = childRange(parent);
2723 if (m_data.context &&
this->autoConnectPolicy() == AutoConnectPolicy::OnRead) {
2725 const auto end =
std::next(begin, count);
2727 for (
auto it = begin; it != end; ++it, ++rowIndex)
2728 clearConnectionInRow(*it, rowIndex, parent);
2732 this->beginRemoveRows(parent, row, row + count - 1);
2733 [[maybe_unused]]
bool callEndRemoveColumns =
false;
2737 if (prevRowCount == count) {
2738 if (
const int columns = columnCount(parent)) {
2739 callEndRemoveColumns =
true;
2740 this->beginRemoveColumns(parent, 0, columns - 1);
2746 const auto end =
std::next(begin, count);
2747 that().deleteRemovedRows(begin, end);
2748 children->erase(begin, end);
2752 that().resetParentInChildren(children);
2755 if (callEndRemoveColumns) {
2756 Q_ASSERT(columnCount(parent) == 0);
2757 this->endRemoveColumns();
2760 this->endRemoveRows();
2767 bool moveRows(
const QModelIndex &sourceParent,
int sourceRow,
int count,
2768 const QModelIndex &destParent,
int destRow)
2770 if constexpr (isMutable() && (range_features::has_rotate || range_features::has_splice)) {
2771 if (!Structure::canMoveRows(sourceParent, destParent))
2774 if (sourceParent != destParent) {
2775 return that().moveRowsAcross(sourceParent, sourceRow, count,
2776 destParent, destRow);
2779 if (sourceRow == destRow || sourceRow == destRow - 1 || count <= 0
2780 || sourceRow < 0 || sourceRow + count - 1 >=
this->rowCount(sourceParent)
2781 || destRow < 0 || destRow >
this->rowCount(destParent)) {
2785 range_type *source = childRange(sourceParent);
2787 if (!
this->beginMoveRows(sourceParent, sourceRow, sourceRow + count - 1, destParent, destRow))
2792 that().resetParentInChildren(source);
2794 this->endMoveRows();
2806 int rowCount(
const QModelIndex &parent)
const {
return that().rowCountImpl(parent); }
2811 return row_traits::fixed_size();
2815 int columnCount(
const QModelIndex &parent)
const {
return that().columnCountImpl(parent); }
2820 if constexpr (!isMutable())
2821 dragActions &= ~Qt::MoveAction;
2826 if constexpr (!isMutable())
2827 dropActions = Qt::IgnoreAction;
2834 using ItemType = QRangeModelDetails::wrapped_t<
typename row_traits::item_type>;
2835 if constexpr (QRangeModelDetails::item_access<ItemType>::hasMimeTypes)
2836 return QRangeModelDetails::QRangeModelItemAccess<ItemType>::mimeTypes();
2837 else if constexpr (QRangeModelDetails::hasMimeTypes<wrapped_row_type>)
2838 return QRangeModelDetails::QRangeModelRowOptions<wrapped_row_type>::mimeTypes();
2840 return this->itemModel().QAbstractItemModel::mimeTypes();
2844 const QModelIndex &target)
const
2846 if constexpr (isMutable()) {
2848 using RowOptions = QRangeModelDetails::QRangeModelRowOptions<wrapped_row_type>;
2849 using ItemType = QRangeModelDetails::wrapped_t<
typename row_traits::item_type>;
2850 using ItemAccess = QRangeModelDetails::QRangeModelItemAccess<ItemType>;
2851 if constexpr (QRangeModelDetails::item_access<ItemType>::hasCanDropMimeDataFull) {
2852 canDrop = ItemAccess::canDropMimeData(data, action, row, column, target);
2853 }
else if constexpr (QRangeModelDetails::hasCanDropMimeDataFull<wrapped_row_type>) {
2854 canDrop = RowOptions::canDropMimeData(data, action, row, column, target);
2856 canDrop =
this->itemModel().QAbstractItemModel::canDropMimeData(data, action, row,
2858 if constexpr (QRangeModelDetails::item_access<ItemType>::hasCanDropMimeData)
2859 canDrop &= ItemAccess::canDropMimeData(data);
2860 else if constexpr (QRangeModelDetails::hasCanDropMimeData<wrapped_row_type>)
2861 canDrop &= RowOptions::canDropMimeData(data);
2870 template <Qt::Orientation orient,
typename Entry>
2871 bool doDropMimeData(std::vector<QRangeModelDetails::DroppedEntry<Entry>> &droppedEntries,
2872 DropOperation dropOperation,
int row,
int column,
const QModelIndex &target)
2875 using Cell =
typename DroppedEntry::Cell;
2876 if (dropOperation == DropOperation::DontDrop)
2879 const bool dropOnTarget = row == -1 && column == -1 && target.isValid();
2880 const QModelIndex parent = dropOperation == DropOperation::InsertAsChildren
2881 ? target.siblingAtColumn(0) : target.parent();
2884 if constexpr (orient == Qt::Horizontal)
2889 int rightColumn = -1;
2892 int maxColumn = that().columnCount(parent) - 1;
2893 for (
auto &droppedEntry : droppedEntries) {
2894 if (droppedEntry.m_cell == Cell{-1, -1}) {
2895 if constexpr (orient == Qt::Horizontal) {
2898 droppedEntry.m_cell = {lastCell.m_row, lastCell.m_column + 1};
2899 if (droppedEntry.m_cell.m_column > maxColumn) {
2900 droppedEntry.m_cell.m_column = 0;
2901 ++droppedEntry.m_cell.m_row;
2904 droppedEntry.m_cell = {lastCell.m_row + 1, lastCell.m_column};
2907 lastCell = droppedEntry.m_cell;
2908 bottomRow = std::max(lastCell.m_row, bottomRow);
2909 rightColumn = std::max(lastCell.m_column, rightColumn);
2912 if (dropOperation == DropOperation::InsertAsChildren) {
2913 row = rowCount(parent);
2915 }
else if (dropOnTarget) {
2917 column = target.column();
2920 row = rowCount(parent);
2925 const bool overwrite = dropOperation == DropOperation::OverwriteAndIgnore
2926 || dropOperation == DropOperation::OverwriteAndExtend;
2929 const int overwriteRows = overwrite
2930 ?
std::min(bottomRow + 1, rowCount(parent) - row)
2932 const int newRows = dropOperation == DropOperation::OverwriteAndExtend
2933 ? bottomRow - overwriteRows + 1
2934 : (dropOperation == DropOperation::InsertAsChildren
2935 || dropOperation == DropOperation::InsertAsSiblings)
2938 if (newRows > 0 && !insertRows(row, newRows, parent))
2942 const int overwriteColumns = overwrite
2943 ?
std::min(rightColumn + 1, columnCount(parent) - column)
2945 const int newColumns = dropOperation == DropOperation::OverwriteAndExtend
2946 ? rightColumn - overwriteColumns + 1 : 0;
2947 if (newColumns > 0 && !insertColumns(column, newColumns, parent))
2951 range_type *parentRange = that().childRange(parent);
2954 range_type &targetRange = *parentRange;
2956 int maxRow = that().rowCount(parent) - 1;
2957 maxColumn = that().columnCount(parent) - 1;
2958 auto begin =
std::move_iterator(droppedEntries.begin());
2959 auto end =
std::move_iterator(droppedEntries.end());
2960 for (; begin != end; ++begin) {
2961 DroppedEntry droppedEntry = *begin;
2962 const Cell cell = {droppedEntry.m_cell.m_row + row, droppedEntry.m_cell.m_column + column};
2963 if (cell.m_row > maxRow || cell.m_column > maxColumn)
2966 if constexpr (orient == Qt::Vertical) {
2967 if constexpr (QRangeModelDetails::is_owning_or_raw_pointer<row_type>()) {
2969 *writeRow =
this->protocol().newRow();
2970 **writeRow =
std::move(droppedEntry);
2972 *writeRow =
std::move(droppedEntry);
2975 row_traits::for_element_at(*writeRow, cell.m_column, [&](
auto &item){
2976 using item_type = q20::remove_cvref_t<
decltype(item)>;
2977 using wrapped_item_type = QRangeModelDetails::wrapped_t<item_type>;
2978 if constexpr (QRangeModelDetails::is_any_owning_ptr<item_type>()) {
2979 if (!QRangeModelDetails::isValid(item))
2980 item.reset(
new wrapped_item_type{std::move(droppedEntry)});
2982 *item = std::move(droppedEntry);
2983 }
else if (!QRangeModelDetails::isValid(item)) {
2986 item = std::move(droppedEntry);
2993 that().resetParentInChildren(&targetRange);
2995 const QModelIndex topLeft = index(row, column, parent);
2996 const QModelIndex bottomRight = orient == Qt::Horizontal
2997 ? sibling(row + bottomRow, column + rightColumn, topLeft)
2998 : sibling(row + bottomRow, maxColumn, topLeft);
2999 this->dataChanged(topLeft, bottomRight, {});
3004 bool dropMimeData(
const QMimeData *data, Qt::DropAction action,
int row,
int column,
3005 const QModelIndex &target)
3007 if constexpr (isMutable()) {
3008 if (!canDropMimeData(data, action, row, column, target))
3011 const bool dropOnTarget = row == -1 && column == -1 && target.isValid();
3013 auto automaticDropOption = [=](
auto dropResult){
3014 DropOperation dropOperation;
3015 if constexpr (
std::is_same_v<
bool,
decltype(dropResult)>) {
3016 dropOperation = dropResult ? DropOperation::Automatic
3017 : DropOperation::DontDrop;
3019 dropOperation =
static_cast<DropOperation>(dropResult);
3022 if (dropOperation == DropOperation::Automatic) {
3023 if constexpr (!canInsertRows())
3024 dropOperation = DropOperation::OverwriteAndIgnore;
3025 else if (!dropOnTarget)
3026 dropOperation = DropOperation::InsertAsSiblings;
3027 else if (target.siblingAtColumn(0).flags().testFlag(Qt::ItemNeverHasChildren))
3028 dropOperation = DropOperation::OverwriteAndExtend;
3030 dropOperation = DropOperation::InsertAsChildren;
3032 return dropOperation;
3035 using ItemType = QRangeModelDetails::wrapped_t<
typename row_traits::item_type>;
3036 if constexpr (QRangeModelDetails::item_access<ItemType>::hasDropMimeDataFull
3037 || QRangeModelDetails::item_access<ItemType>::hasDropMimeData) {
3038 using ItemAccess = QRangeModelDetails::QRangeModelItemAccess<ItemType>;
3039 using DroppedItem = QRangeModelDetails::DroppedEntry<ItemType>;
3040 std::vector<DroppedItem> droppedItems;
3041 DropOperation dropOperation = automaticDropOption([&]{
3042 auto inserter =
std::back_inserter(droppedItems);
3043 if constexpr (QRangeModelDetails::item_access<ItemType>::hasDropMimeDataFull)
3044 return ItemAccess::dropMimeData(data, action, row, column, target, inserter);
3046 return ItemAccess::dropMimeData(data, inserter);
3048 if (doDropMimeData<Qt::Horizontal>(droppedItems, dropOperation, row, column, target))
3051 }
else if constexpr (QRangeModelDetails::hasDropMimeDataFull<wrapped_row_type>
3052 || QRangeModelDetails::hasDropMimeData<wrapped_row_type>) {
3053 using RowOptions = QRangeModelDetails::QRangeModelRowOptions<wrapped_row_type>;
3054 using DroppedRow = QRangeModelDetails::DroppedEntry<wrapped_row_type>;
3055 std::vector<DroppedRow> droppedRows;
3056 DropOperation dropOperation = automaticDropOption([&]{
3057 auto inserter =
std::back_inserter(droppedRows);
3058 if constexpr (QRangeModelDetails::hasDropMimeDataFull<wrapped_row_type>)
3059 return RowOptions::dropMimeData(data, action, row, column, target, inserter);
3061 return RowOptions::dropMimeData(data, inserter);
3063 if (doDropMimeData<Qt::Vertical>(droppedRows, dropOperation, row, column, target))
3067 if (dropOnTarget && that().dropOnItem(data, target))
3085 using pointer [[maybe_unused]] =
void;
3091 , m_columnCount(model->columnCount({}))
3093 updateCurrentIndexFullRow();
3098 const QModelIndex &index = *m_it;
3099 return {m_model->rowData(index),
3100 m_currentIndexIsFullRow
3101 ? m_model->createIndex(m_it->row(), -1, m_it->internalPointer()) : index};
3105 if (m_currentIndexIsFullRow)
3106 m_it += m_columnCount;
3109 updateCurrentIndexFullRow();
3116 m_currentIndexIsFullRow =
false;
3117 const int lastColumn = m_columnCount - 1;
3118 if (m_it - m_begin >= lastColumn && m_it->column() == lastColumn) {
3119 const QModelIndex &firstInRow = m_it[-lastColumn];
3120 if (m_it->row() == firstInRow.row()
3121 && firstInRow.internalPointer() == m_it->internalPointer()) {
3122 m_currentIndexIsFullRow =
true;
3132 auto tmp = *
this; tmp.m_it -= n;
return tmp;
3139 void updateCurrentIndexFullRow()
3141 m_currentIndexIsFullRow =
false;
3142 if (m_it == m_end || m_it->column() || m_end - m_it < m_columnCount)
3144 const QModelIndex &lastInRow = m_it[m_columnCount - 1];
3145 m_currentIndexIsFullRow = lastInRow.row() == m_it->row()
3146 && lastInRow.internalPointer() == m_it->internalPointer();
3150 base_iterator m_begin;
3151 base_iterator m_end;
3153 int m_columnCount = 0;
3154 bool m_currentIndexIsFullRow =
false;
3168 using pointer [[maybe_unused]] =
void;
3172 const QModelIndex &index = *m_it;
3174 const item_type *pitem =
nullptr;
3175 const auto &row =
m_model->rowData(index);
3177 row_traits::for_element_at(QRangeModelDetails::refTo(row), index.column(),
3178 [&pitem](
const auto &item){
3183 if constexpr (std::disjunction_v<QRangeModelDetails::is_owning_or_raw_pointer<row_type>,
3184 QRangeModelDetails::is_owning_or_raw_pointer<item_type>>) {
3188 constexpr bool is_constexpr_default_constructible_v =
3189 value_type::
template is_constexpr_default_constructible<item_type>::value;
3190 if constexpr (is_constexpr_default_constructible_v) {
3191 Q_CONSTINIT
static const item_type emptyDefault;
3192 return {emptyDefault, index};
3195 static const item_type emptyDefault;
3196 return {emptyDefault, index};
3201 return {*pitem, index};
3211 auto tmp = *
this; tmp.m_it -= n;
return tmp;
3221 template <
typename Iterator>
3237 QMimeData *result =
nullptr;
3238 using RowOptions = QRangeModelDetails::QRangeModelRowOptions<wrapped_row_type>;
3239 using ItemType = QRangeModelDetails::wrapped_t<
typename row_traits::item_type>;
3241 if constexpr (QRangeModelDetails::item_access<ItemType>::hasMimeData) {
3242 using ItemAccess = QRangeModelDetails::QRangeModelItemAccess<ItemType>;
3245 result = ItemAccess::mimeData(MimeDataRange<MimeDataItemIterator>{begin, end});
3246 }
else if constexpr (QRangeModelDetails::hasMimeDataRowSpan<wrapped_row_type>) {
3247 const auto begin =
MimeDataRowIterator(indexes.begin(), indexes.begin(), indexes.end(),
this);
3248 const auto end =
MimeDataRowIterator(indexes.end(), indexes.begin(), indexes.end(),
this);
3249 result = RowOptions::mimeData(MimeDataRange<MimeDataRowIterator>{begin, end});
3250 }
else if constexpr (QRangeModelDetails::hasMimeDataIndexList<wrapped_row_type>) {
3251 result = RowOptions::mimeData(indexes);
3317 static constexpr bool modelCopied = !QRangeModelDetails::is_wrapped<Range>() &&
3318 (std::is_reference_v<Range> || std::is_const_v<std::remove_reference_t<Range>>);
3320 static constexpr bool modelShared = QRangeModelDetails::is_any_shared_ptr<Range>();
3322 static constexpr bool default_row_deleter = protocol_traits::is_default &&
3323 protocol_traits::has_deleteRow;
3325 static constexpr bool ambiguousRowOwnership = (modelCopied || modelShared) &&
3328 static_assert(!ambiguousRowOwnership,
3329 "Using of copied and shared tree and table models with rows as raw pointers, "
3330 "and the default protocol is not allowed due to ambiguity of rows ownership. "
3331 "Move the model in, use another row type, or implement a custom tree protocol.");
3333 if constexpr (protocol_traits::has_deleteRow && !std::is_pointer_v<Range>
3334 && !QRangeModelDetails::is_any_of<Range, std::reference_wrapper>()) {
3337 that().deleteRemovedRows(begin, end);
3343 if constexpr (dynamicColumns() && !row_features::has_resize) {
3347 }
else if constexpr (!protocol_traits::has_newRow) {
3350 }
else if constexpr (!range_features::has_insert_range
3351 && !std::is_copy_constructible_v<row_type>) {
3357 return Structure::canInsertRowsImpl();
3363 return Structure::canRemoveRowsImpl();
3366 template <
typename F>
3367 bool writeAt(
const QModelIndex &index, F&& writer)
3369 row_reference row = rowData(index);
3372 return row_traits::for_element_at(row, index.column(), [&writer](
auto &&target) {
3373 using target_type =
decltype(target);
3375 if constexpr (std::is_lvalue_reference_v<target_type>
3376 && !std::is_const_v<std::remove_reference_t<target_type>>) {
3377 return writer(std::forward<target_type>(target));
3384 template <
typename F>
3385 bool readAt(
const QModelIndex &index, F&& reader)
const {
3386 const_row_reference row = rowData(index);
3389 return row_traits::for_element_at(row, index.column(), std::forward<F>(reader));
3392 template <
typename Value>
3395 if constexpr (std::is_constructible_v<QVariant, Value>)
3396 return QVariant(value);
3398 return QVariant::fromValue(value);
3400 template <
typename Value>
3404 if constexpr (std::is_constructible_v<QVariant, Value *>)
3405 return QVariant(value);
3407 return read(*value);
3412 template <
typename Target>
3413 static bool write(Target &target,
const QVariant &value)
3415 using Type = std::remove_reference_t<Target>;
3416 if constexpr (std::is_constructible_v<Target, QVariant>) {
3419 }
else if (value.canConvert<Type>()) {
3420 target = value.value<Type>();
3425 template <
typename Target>
3426 static bool write(Target *target,
const QVariant &value)
3429 return write(*target, value);
3433 template <
typename ItemType>
3437 operator QMetaProperty()
const {
3438 const QByteArray roleName = that.itemModel().roleNames().value(role);
3439 const QMetaObject &mo = ItemType::staticMetaObject;
3440 if (
const int index = mo.indexOfProperty(roleName.data());
3442 return mo.property(index);
3446 const QRangeModelImpl &that;
3448 } findProperty{*
this, role};
3450 if constexpr (ModelData::cachesProperties)
3451 return *m_data.properties.tryEmplace(role, findProperty).iterator;
3453 return findProperty;
3457 const QObject *gadget,
const QMetaProperty &prop)
const
3459 if (!index.isValid())
3461 const typename ModelData::Connection connection = {gadget, role};
3462 if (prop.hasNotifySignal() &&
this->autoConnectPolicy() == AutoConnectPolicy::OnRead
3463 && !m_data.connections.contains(connection)) {
3464 if constexpr (isMutable())
3465 Self::connectProperty(index, gadget, m_data.context, role, prop);
3467 Self::connectPropertyConst(index, gadget, m_data.context, role, prop);
3468 m_data.connections.insert(connection);
3472 template <
typename ItemType>
3475 using item_type = std::remove_pointer_t<ItemType>;
3477 QMetaProperty prop = roleProperty<item_type>(role);
3478 if (!prop.isValid() && role == Qt::EditRole) {
3479 role = Qt::DisplayRole;
3480 prop = roleProperty<item_type>(Qt::DisplayRole);
3483 if (prop.isValid()) {
3484 if constexpr (itemsAreQObjects)
3485 connectPropertyOnRead(index, role, gadget, prop);
3486 result = readProperty(prop, gadget);
3491 template <
typename ItemType>
3494 return readRole(index, role, &gadget);
3497 template <
typename ItemType>
3500 if constexpr (std::is_base_of_v<QObject, ItemType>)
3501 return prop.read(gadget);
3503 return prop.readOnGadget(gadget);
3506 template <
typename ItemType>
3509 using item_type = std::remove_pointer_t<ItemType>;
3510 const QMetaObject &mo = item_type::staticMetaObject;
3511 const QMetaProperty prop = mo.property(index.column() + mo.propertyOffset());
3513 if constexpr (rowsAreQObjects)
3514 connectPropertyOnRead(index, Qt::DisplayRole, gadget, prop);
3516 return readProperty(prop, gadget);
3519 template <
typename ItemType>
3522 return readProperty(index, &gadget);
3525 template <
typename ItemType>
3526 bool writeRole(
int role, ItemType *gadget,
const QVariant &data)
3528 using item_type = std::remove_pointer_t<ItemType>;
3529 auto prop = roleProperty<item_type>(role);
3530 if (!prop.isValid() && role == Qt::EditRole)
3531 prop = roleProperty<item_type>(Qt::DisplayRole);
3533 return prop.isValid() ? writeProperty(prop, gadget, data) :
false;
3536 template <
typename ItemType>
3537 bool writeRole(
int role, ItemType &&gadget,
const QVariant &data)
3539 return writeRole(role, &gadget, data);
3542 template <
typename ItemType>
3543 static bool writeProperty(
const QMetaProperty &prop, ItemType *gadget,
const QVariant &data)
3545 if constexpr (std::is_base_of_v<QObject, ItemType>)
3546 return prop.write(gadget, data);
3548 return prop.writeOnGadget(gadget, data);
3550 template <
typename ItemType>
3553 using item_type = std::remove_pointer_t<ItemType>;
3554 const QMetaObject &mo = item_type::staticMetaObject;
3555 return writeProperty(mo.property(property + mo.propertyOffset()), gadget, data);
3558 template <
typename ItemType>
3559 static bool writeProperty(
int property, ItemType &&gadget,
const QVariant &data)
3561 return writeProperty(property, &gadget, data);
3564 template <
typename ItemType>
3567 using item_type = std::remove_pointer_t<ItemType>;
3568 const QMetaObject &mo = item_type::staticMetaObject;
3569 bool success =
true;
3570 if (property == -1) {
3572 if constexpr (std::is_base_of_v<QObject, item_type>) {
3573 for (
int p = mo.propertyOffset(); p < mo.propertyCount(); ++p)
3574 success = writeProperty(mo.property(p), object, {}) && success;
3579 success = writeProperty(mo.property(property + mo.propertyOffset()), object, {});
3584 template <
typename ItemType>
3587 return resetProperty(property, &object);
3593 Q_ASSERT(index.isValid());
3594 return that().rowDataImpl(index);
3599 Q_ASSERT(index.isValid());
3600 return that().rowDataImpl(index);
3605 if (!index.isValid())
3606 return m_data.model();
3609 return that().childRangeImpl(index);
3614 if (!index.isValid())
3615 return m_data.model();
3618 return that().childRangeImpl(index);
3629template <
typename Range,
typename Protocol>
3636 using range_type =
typename Base::range_type;
3637 using range_features =
typename Base::range_features;
3638 using row_type =
typename Base::row_type;
3639 using row_ptr =
typename Base::row_ptr;
3640 using const_row_ptr =
typename Base::const_row_ptr;
3642 using tree_traits =
typename Base::protocol_traits;
3643 static constexpr bool is_mutable_impl = tree_traits::has_mutable_childRows;
3645 static constexpr bool rows_are_any_refs_or_pointers = Base::rows_are_raw_pointers ||
3646 QRangeModelDetails::is_smart_ptr<row_type>() ||
3647 QRangeModelDetails::is_any_of<row_type,
std::reference_wrapper>();
3648 static_assert(!Base::dynamicColumns(),
"A tree must have a static number of columns!");
3652 : Base(
std::forward<Range>(model),
std::forward<Protocol>(p), itemModel)
3657 for (
auto &&child : children)
3669 auto *children =
this->childRange(parent);
3672 return autoConnectPropertiesRange(QRangeModelDetails::refTo(children), parent);
3678 if (!parent.isValid())
3679 return this->createIndex(row, column);
3681 if (parent.column())
3682 return QModelIndex();
3684 const_row_ptr grandParent =
static_cast<const_row_ptr>(parent.constInternalPointer());
3685 const auto &parentSiblings = childrenOf(grandParent);
3692 if (!child.isValid())
3696 const_row_ptr parentRow =
static_cast<const_row_ptr>(child.constInternalPointer());
3701 auto &&grandParent =
this->protocol().parentRow(
QRangeModelDetails::refTo(parentRow));
3702 const range_type &parentSiblings = childrenOf(
QRangeModelDetails::pointerTo(grandParent));
3706 const auto it =
std::find_if(begin, end, [parentRow](
auto &&s){
3710 return this->createIndex(
std::distance(begin, it), 0,
3717 return Base::size(
this->childRange(parent));
3724 return Base::fixedColumnCount();
3729 return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
3737 return (rows_are_any_refs_or_pointers || tree_traits::has_setParentRow)
3738 && Base::dynamicRows() && range_features::has_insert;
3746 return (rows_are_any_refs_or_pointers || tree_traits::has_setParentRow)
3747 && Base::dynamicRows() && range_features::has_erase;
3755 static constexpr bool canMoveRows(
const QModelIndex &,
const QModelIndex &)
3761 const QModelIndex &destParent,
int destRow)
3766 if constexpr (!rows_are_any_refs_or_pointers && !tree_traits::has_setParentRow) {
3768 }
else if constexpr (!(range_features::has_insert && range_features::has_erase)) {
3770 }
else if (!
this->beginMoveRows(sourceParent, sourceRow, sourceRow + count - 1,
3771 destParent, destRow)) {
3775 range_type *source =
this->childRange(sourceParent);
3776 range_type *destination =
this->childRange(destParent);
3781 if constexpr (range_features::has_insert_range) {
3783 const auto sourceEnd =
std::next(sourceStart, count);
3785 destination->insert(destStart,
std::move_iterator(sourceStart),
3786 std::move_iterator(sourceEnd));
3787 }
else if constexpr (
std::is_copy_constructible_v<row_type>) {
3789 destination->insert(destStart, count, row_type{});
3792 row_ptr parentRow = destParent.isValid()
3798 if (parentRow ==
static_cast<row_ptr>(sourceParent.internalPointer())) {
3799 if (sourceParent.row() < destRow) {
3800 source =
this->childRange(sourceParent);
3803 source =
this->childRange(
this->createIndex(sourceParent.row() + count, 0,
3804 sourceParent.internalPointer()));
3811 const auto writeEnd =
std::next(writeStart, count);
3813 const auto sourceEnd =
std::next(sourceStart, count);
3815 for (
auto write = writeStart, read = sourceStart; write != writeEnd; ++write, ++read) {
3818 if constexpr (!range_features::has_insert_range)
3819 *write =
std::move(*read);
3823 source->erase(sourceStart, sourceEnd);
3833 this->endMoveRows();
3841 static_assert(tree_traits::has_setParentRow);
3842 row_type empty_row =
this->protocol().newRow();
3848 template <
typename It,
typename Sentinel>
3851 if constexpr (tree_traits::has_deleteRow) {
3852 for (
auto it = begin; it != end; ++it) {
3853 if constexpr (Base::isMutable()) {
3854 decltype(
auto) children =
this->protocol().childRows(
QRangeModelDetails::refTo(*it));
3862 this->protocol().deleteRow(
std::move(*it));
3869 const auto persistentIndexList =
this->persistentIndexList();
3870 const auto [firstColumn, lastColumn] = [&persistentIndexList]{
3871 int first = std::numeric_limits<
int>::max();
3873 for (
const auto &pmi : persistentIndexList) {
3874 first = (
std::min)(pmi.column(), first);
3875 last = (
std::max)(pmi.column(), last);
3877 return std::pair(first, last);
3885 if constexpr (tree_traits::has_setParentRow && !rows_are_any_refs_or_pointers) {
3886 const bool changePersistentIndexes = pmiToColumn >= pmiFromColumn;
3889 for (
auto it = begin; it != end; ++it) {
3890 decltype(
auto) maybeChildren =
this->protocol().childRows(*it);
3896 for (
auto &child : childrenRef) {
3897 const_row_ptr oldParent =
this->protocol().parentRow(child);
3898 if (oldParent != parentRow) {
3899 if (changePersistentIndexes) {
3900 for (
int column = pmiFromColumn; column <= pmiToColumn; ++column) {
3901 this->changePersistentIndex(
this->createIndex(row, column, oldParent),
3902 this->createIndex(row, column, parentRow));
3905 this->protocol().setParentRow(child, parentRow);
3918 for (
const auto &row : range) {
3919 if (!
this->autoConnectPropertiesInRow(row, rowIndex, parent))
3924 if (!autoConnectPropertiesRange(QRangeModelDetails::refTo(children),
3925 this->itemModel().index(rowIndex, 0, parent))) {
3936 return autoConnectPropertiesRange(*
this->m_data.model(), {});
3941 const_row_ptr parentRow =
static_cast<const_row_ptr>(index.constInternalPointer());
3942 const range_type &siblings = childrenOf(parentRow);
3943 Q_ASSERT(index.row() <
int(Base::size(siblings)));
3949 row_ptr parentRow =
static_cast<row_ptr>(index.internalPointer());
3950 range_type &siblings = childrenOf(parentRow);
3951 Q_ASSERT(index.row() <
int(Base::size(siblings)));
3957 const auto &row =
this->rowData(index);
3959 return static_cast<
const range_type *>(
nullptr);
3961 decltype(
auto) children =
this->protocol().childRows(
QRangeModelDetails::refTo(row));
3967 auto &row =
this->rowData(index);
3969 return static_cast<range_type *>(
nullptr);
3971 decltype(
auto) children =
this->protocol().childRows(
QRangeModelDetails::refTo(row));
3972 using Children = std::remove_reference_t<
decltype(children)>;
3974 if constexpr (QRangeModelDetails::is_any_of<Children, std::optional>())
3975 if constexpr (std::is_default_constructible<
typename Children::value_type>()) {
3977 children.emplace(range_type{});
3986 : *
this->m_data.model();
3992 : *
this->m_data.model();
3995 template <
typename LessThan>
3998 for (
auto &row : range) {
3999 decltype(
auto) children =
this->protocol().childRows(
QRangeModelDetails::refTo(row));
4005 this->sortSubRange(range, parentRow, lessThan);
4008 template <
typename LessThan>
4011 sortImplRecursive(*
this->m_data.model(),
nullptr, lessThan);
4017 erase_if(list, [expectedParent](
const QModelIndex &index){
4018 return static_cast<row_ptr>(index.internalPointer()) != expectedParent;
4023 int role,
const QVariant &value,
int hits, Qt::MatchFlags flags,
int column,
4024 QModelIndexList &result,
const QCollator &collator)
const
4029 const bool recurse = flags.testAnyFlag(Qt::MatchRecursive);
4030 const bool allHits = (hits == -1);
4032 for (
int r = from; it != end && r < to && (allHits || result.size() < hits); ++it, ++r) {
4033 const QModelIndex index =
this->createIndex(r, column, parentPtr);
4034 if (
this->matchRow(*it, index, role, value, flags, collator))
4035 result.append(index);
4038 decltype(
auto) children =
this->protocol().childRows(
QRangeModelDetails::refTo(*it));
4041 matchImplRecursive(QRangeModelDetails::refTo(children),
4042 QRangeModelDetails::pointerTo(*it), 0,
4043 int(QRangeModelDetails::size(QRangeModelDetails::refTo(children))),
4044 role, value, hits, flags, column, result, collator);
4051 Qt::MatchFlags flags,
const QCollator &collator)
const
4053 QModelIndexList result;
4054 const bool wrap = flags.testAnyFlag(Qt::MatchWrap);
4055 const int column = start.column();
4056 const int from = start.row();
4057 const int to =
this->rowCount(start.parent());
4059 for (
int i = 0; (wrap && i < 2) || (!wrap && i < 1); ++i) {
4060 const int fromRow = (i == 0) ? from : 0;
4061 const int toRow = (i == 0) ? to : from;
4062 matchImplRecursive(*
this->m_data.model(),
nullptr, fromRow, toRow,
4063 role, value, hits, flags, column, result, collator);
4077template <
typename Range>
4084 static constexpr bool is_mutable_impl =
true;
4102 if constexpr (Base::dynamicColumns()) {
4103 if (column <
int(Base::size(*QRangeModelDetails::pos(*
this->m_data.model(), row))))
4104 return this->createIndex(row, column);
4107 qCritical(
"QRangeModel: Column-range at row %d is not large enough!", row);
4111 return this->createIndex(row, column);
4122 if (parent.isValid())
4124 return int(Base::size(*
this->m_data.model()));
4129 if (parent.isValid())
4133 if constexpr (Base::dynamicColumns()) {
4134 return int(Base::size(*
this->m_data.model()) == 0
4136 : Base::size(*QRangeModelDetails::adl_begin(*
this->m_data.model())));
4138 return Base::fixedColumnCount();
4144 return Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemNeverHasChildren;
4149 return Base::dynamicRows() && range_features::has_insert;
4154 return Base::dynamicRows() && range_features::has_erase;
4157 static constexpr bool canMoveColumns(
const QModelIndex &source,
const QModelIndex &destination)
4159 return !source.isValid() && !destination.isValid();
4162 static constexpr bool canMoveRows(
const QModelIndex &source,
const QModelIndex &destination)
4164 return !source.isValid() && !destination.isValid();
4168 const QModelIndex &,
int)
noexcept
4176 row_type empty_row =
this->protocol().newRow();
4179 if constexpr (Base::dynamicColumns() && row_features::has_resize) {
4187 template <
typename It,
typename Sentinel>
4190 if constexpr (Base::protocol_traits::has_deleteRow) {
4191 for (
auto it = begin; it != end; ++it)
4192 this->protocol().deleteRow(
std::move(*it));
4198 Q_ASSERT(q20::cmp_less(index.row(), Base::size(*
this->m_data.model())));
4204 Q_ASSERT(q20::cmp_less(index.row(), Base::size(*
this->m_data.model())));
4221 return *
this->m_data.model();
4227 return *
this->m_data.model();
4238 for (
const auto &row : *
this->m_data.model()) {
4239 result &=
this->autoConnectPropertiesInRow(row, rowIndex, {});
4245 template <
typename LessThan>
4248 this->sortSubRange(*
this->m_data.model(),
nullptr, lessThan);
4254 int hits, Qt::MatchFlags flags,
const QCollator &collator)
const
4256 QModelIndexList result;
4257 const bool wrap = flags.testAnyFlag(Qt::MatchWrap);
4258 const bool allHits = (hits == -1);
4259 const int column = start.column();
4260 int from = start.row();
4261 int to =
this->rowCount({});
4262 decltype(
auto) siblings = *
this->m_data.model();
4264 for (
int i = 0; (wrap && i < 2) || (!wrap && i < 1); ++i) {
4267 for (
int r = from; it != end && r < to && (allHits || result.size() < hits);
4271 const QModelIndex index =
this->createIndex(r, column,
nullptr);
4272 if (
this->matchRow(*it, index, role, value, flags, collator))
4273 result.append(index);
4285 return this->dropDataOnItem(data, index);
QModelIndex parentImpl(const QModelIndex &) const
static constexpr bool canMoveRows(const QModelIndex &source, const QModelIndex &destination)
void deleteRemovedRows(It &&begin, Sentinel &&end)
const range_type & childrenOf(const_row_ptr row) const
static constexpr bool canRemoveRowsImpl()
bool dropOnItem(const QMimeData *data, const QModelIndex &index)
QGenericTableItemModelImpl(Range &&model, QRangeModel *itemModel)
range_type * childRangeImpl(const QModelIndex &)
int columnCountImpl(const QModelIndex &parent) const
constexpr bool moveRowsAcross(const QModelIndex &, int, int, const QModelIndex &, int) noexcept
decltype(auto) rowDataImpl(const QModelIndex &index) const
static constexpr bool canInsertRowsImpl()
const range_type * childRangeImpl(const QModelIndex &) const
int rowCountImpl(const QModelIndex &parent) const
void resetParentInChildren(range_type *)
void prunePersistentIndexList(QModelIndexList &, typename Base::row_ptr)
bool autoConnectPropertiesImpl() const
QModelIndexList matchImpl(const QModelIndex &start, int role, const QVariant &value, int hits, Qt::MatchFlags flags, const QCollator &collator) const
static constexpr bool canMoveColumns(const QModelIndex &source, const QModelIndex &destination)
decltype(auto) rowDataImpl(const QModelIndex &index)
QModelIndex indexImpl(int row, int column, const QModelIndex &) const
range_type & childrenOf(row_ptr row)
static constexpr Qt::ItemFlags defaultFlags()
void sortImpl(const LessThan &lessThan)
auto makeEmptyRow(typename Base::row_ptr)
static constexpr bool canMoveColumns(const QModelIndex &, const QModelIndex &)
bool dropOnItem(const QMimeData *, const QModelIndex &)
auto makeEmptyRow(row_ptr parentRow)
void setParentRow(range_type &children, row_ptr parent)
bool autoConnectPropertiesImpl() const
range_type * childRangeImpl(const QModelIndex &index)
bool moveRowsAcross(const QModelIndex &sourceParent, int sourceRow, int count, const QModelIndex &destParent, int destRow)
void resetParentInChildren(range_type *children)
int rowCountImpl(const QModelIndex &parent) const
range_type & childrenOf(row_ptr row)
QModelIndexList matchImpl(const QModelIndex &start, int role, const QVariant &value, int hits, Qt::MatchFlags flags, const QCollator &collator) const
static constexpr bool canRemoveRowsImpl()
void resetParentInChildrenRecursive(range_type *children, int pmiFromColumn, int pmiToColumn)
int columnCountImpl(const QModelIndex &) const
static constexpr bool canMoveRows(const QModelIndex &, const QModelIndex &)
const range_type & childrenOf(const_row_ptr row) const
decltype(auto) rowDataImpl(const QModelIndex &index)
void matchImplRecursive(const range_type &range, const_row_ptr parentPtr, int from, int to, int role, const QVariant &value, int hits, Qt::MatchFlags flags, int column, QModelIndexList &result, const QCollator &collator) const
QGenericTreeItemModelImpl(Range &&model, Protocol &&p, QRangeModel *itemModel)
void prunePersistentIndexList(QModelIndexList &list, row_ptr expectedParent)
bool autoConnectPropertiesRange(const range_type &range, const QModelIndex &parent) const
QModelIndex indexImpl(int row, int column, const QModelIndex &parent) const
void deleteRemovedRows(It &&begin, Sentinel &&end)
bool autoConnectProperties(const QModelIndex &parent) const
void sortImplRecursive(range_type &range, row_ptr parentRow, const LessThan &lessThan)
const range_type * childRangeImpl(const QModelIndex &index) const
static constexpr bool canInsertRowsImpl()
decltype(auto) rowDataImpl(const QModelIndex &index) const
void deleteRemovedRows(range_type &range)
static constexpr Qt::ItemFlags defaultFlags()
void sortImpl(const LessThan &lessThan)
QModelIndex parentImpl(const QModelIndex &child) const
const QAbstractItemModel & itemModel() const
void beginInsertRows(const QModelIndex &parent, int start, int count)
void multiData(const QModelIndex &index, QModelRoleDataSpan roleDataSpan) const
bool beginMoveColumns(const QModelIndex &sourceParent, int sourceFirst, int sourceLast, const QModelIndex &destParent, int destRow)
QStringList mimeTypes() const
bool setItemData(const QModelIndex &index, const QMap< int, QVariant > &data)
QMap< int, QVariant > itemData(const QModelIndex &index) const
bool insertRows(int row, int count, const QModelIndex &parent)
Qt::DropActions adjustSupportedDropActions(Qt::DropActions dropActions)
Qt::ItemFlags flags(const QModelIndex &index) const
bool beginMoveRows(const QModelIndex &sourceParent, int sourceFirst, int sourceLast, const QModelIndex &destParent, int destRow)
void beginRemoveRows(const QModelIndex &parent, int start, int count)
bool clearItemData(const QModelIndex &index)
QVariant data(const QModelIndex &index, int role) const
QRangeModelImplBase(QRangeModel *itemModel)
QModelIndexList persistentIndexList() const
bool canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) const
int columnCount(const QModelIndex &parent) const
static Q_CORE_EXPORT bool connectProperties(const QModelIndex &index, const QObject *item, QRangeModelDetails::AutoConnectContext *context, const QHash< int, QMetaProperty > &properties)
QModelIndex sibling(int row, int column, const QModelIndex &index) const
static Q_CORE_EXPORT bool matchValue(const QString &itemData, const QVariant &value, Qt::MatchFlags flags, const QCollator &collator)
void beginInsertColumns(const QModelIndex &parent, int start, int count)
bool insertColumns(int column, int count, const QModelIndex &parent)
void setAutoConnectPolicy()
bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)
void sort(int column, Qt::SortOrder order)
bool removeRows(int row, int count, const QModelIndex &parent)
Qt::DropActions adjustSupportedDragActions(Qt::DropActions dragActions)
static Q_CORE_EXPORT bool matchValue(const QString &itemData, const QVariant &value, Qt::MatchFlags flags)
QModelIndex parent(const QModelIndex &child) const
void changePersistentIndex(const QModelIndex &from, const QModelIndex &to)
QAbstractItemModel & itemModel()
QModelIndex createIndex(int row, int column, const void *ptr=nullptr) const
QHash< int, QByteArray > roleNames() const
void interfaceVersion(int &version) const
bool moveColumns(const QModelIndex &sourceParent, int sourceColumn, int count, const QModelIndex &destParent, int destColumn)
bool setData(const QModelIndex &index, const QVariant &data, int role)
void dataChanged(const QModelIndex &from, const QModelIndex &to, const QList< int > &roles)
QVariant headerData(int section, Qt::Orientation orientation, int role) const
static Q_CORE_EXPORT bool connectPropertiesConst(const QModelIndex &index, const QObject *item, QRangeModelDetails::AutoConnectContext *context, const QHash< int, QMetaProperty > &properties)
static Qt::partial_ordering compareData(const QVariant &lhs, const QVariant &rhs, const QCollator *collator)
AutoConnectPolicy autoConnectPolicy() const
bool removeColumns(int column, int count, const QModelIndex &parent)
Q_CORE_EXPORT bool dropDataOnItem(const QMimeData *data, const QModelIndex &index)
static Q_CORE_EXPORT bool connectPropertyConst(const QModelIndex &index, const QObject *item, QRangeModelDetails::AutoConnectContext *context, int role, const QMetaProperty &property)
std::tuple< typename C::Destroy, typename C::InvalidateCaches, typename C::SetHeaderData, typename C::SetData, typename C::SetItemData, typename C::ClearItemData, typename C::InsertColumns, typename C::RemoveColumns, typename C::MoveColumns, typename C::InsertRows, typename C::RemoveRows, typename C::MoveRows, typename C::Index, typename C::Parent, typename C::Sibling, typename C::RowCount, typename C::ColumnCount, typename C::Flags, typename C::HeaderData, typename C::Data, typename C::ItemData, typename C::RoleNames, typename C::MultiData, typename C::SetAutoConnectPolicy, typename C::InterfaceVersion, typename C::Sort, typename C::Match, typename C::AdjustSupportedDragActions, typename C::AdjustSupportedDropActions, typename C::MimeTypes, typename C::CanDropMimeData, typename C::DropMimeData, typename C::MimeData > MethodTemplates
QModelIndex index(int row, int column, const QModelIndex &parent) const
QModelIndexList match(const QModelIndex &start, int role, const QVariant &value, int hits, Qt::MatchFlags flags) const
QMimeData * mimeData(const QModelIndexList &indexes) const
bool setHeaderData(int section, Qt::Orientation orientation, const QVariant &data, int role)
int rowCount(const QModelIndex &parent) const
Q_CORE_EXPORT int sortRole() const
static Q_CORE_EXPORT bool connectProperty(const QModelIndex &index, const QObject *item, QRangeModelDetails::AutoConnectContext *context, int role, const QMetaProperty &property)
void beginRemoveColumns(const QModelIndex &parent, int start, int count)
bool moveRows(const QModelIndex &sourceParent, int sourceRow, int count, const QModelIndex &destParent, int destRow)
bool removeRows(int row, int count, const QModelIndex &parent={})
static QVariant readProperty(const QMetaProperty &prop, ItemType *gadget)
QHash< int, QByteArray > roleNames() const
row_reference rowData(const QModelIndex &index)
static constexpr bool dynamicRows()
static QVariant read(const Value &value)
const range_type * childRange(const QModelIndex &index) const
bool moveColumns(const QModelIndex &sourceParent, int sourceColumn, int count, const QModelIndex &destParent, int destColumn)
auto maybeBlockDataChangedDispatch()
static constexpr bool has_metaobject
QMetaProperty roleProperty(int role) const
int columnCount(const QModelIndex &parent) const
bool writeRole(int role, ItemType &&gadget, const QVariant &data)
static bool write(Target *target, const QVariant &value)
void connectPropertyOnRead(const QModelIndex &index, int role, const QObject *gadget, const QMetaProperty &prop) const
Qt::ItemFlags flags(const QModelIndex &index) const
bool insertColumns(int column, int count, const QModelIndex &parent)
bool doDropMimeData(std::vector< QRangeModelDetails::DroppedEntry< Entry > > &droppedEntries, DropOperation dropOperation, int row, int column, const QModelIndex &target)
QVariant data(const QModelIndex &index, int role) const
QModelIndexList match(const QModelIndex &start, int role, const QVariant &value, int hits, Qt::MatchFlags flags) const
QVariant headerData(int section, Qt::Orientation orientation, int role) const
static constexpr bool isRangeModelRole(int role)
bool clearItemData(const QModelIndex &index)
void multiData(const QModelIndex &index, QModelRoleDataSpan roleDataSpan) const
bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &target)
static constexpr int fixedColumnCount()
const protocol_type & protocol() const
static bool resetProperty(int property, ItemType &&object)
QModelIndex sibling(int row, int column, const QModelIndex &index) const
static bool writeProperty(int property, ItemType &&gadget, const QVariant &data)
bool setItemData(const QModelIndex &index, const QMap< int, QVariant > &data)
bool matchRow(const_row_reference row, const QModelIndex &index, int role, const QVariant &value, Qt::MatchFlags flags, const QCollator &collator) const
bool insertRows(int row, int count, const QModelIndex &parent)
static constexpr bool canInsertRows()
void interfaceVersion(int &versionNumber) const
static bool writeProperty(const QMetaProperty &prop, ItemType *gadget, const QVariant &data)
QVariant readProperty(const QModelIndex &index, ItemType *gadget) const
void sort(int column, Qt::SortOrder order)
static constexpr int size(const C &c)
const_row_reference rowData(const QModelIndex &index) const
bool writeAt(const QModelIndex &index, F &&writer)
static constexpr bool one_dimensional_range
static constexpr bool rows_are_raw_pointers
bool setHeaderData(int, Qt::Orientation, const QVariant &, int)
bool removeColumns(int column, int count, const QModelIndex &parent)
static constexpr bool isMutable()
bool setData(const QModelIndex &index, const QVariant &data, int role)
QModelIndex parent(const QModelIndex &child) const
static QVariant read(Value *value)
static bool write(Target &target, const QVariant &value)
bool writeRole(int role, ItemType *gadget, const QVariant &data)
QVariant readRole(const QModelIndex &index, int role, const ItemType &gadget) const
Qt::DropActions adjustSupportedDragActions(Qt::DropActions dragActions)
QRangeModelImpl< Structure, Range, Protocol > Self
bool canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &target) const
static constexpr bool canRemoveRows()
static constexpr int static_column_count
QVariant readProperty(const QModelIndex &index, const ItemType &gadget) const
protocol_type & protocol()
int rowCount(const QModelIndex &parent) const
static constexpr bool rows_are_owning_or_raw_pointers
QModelIndex index(int row, int column, const QModelIndex &parent) const
static constexpr int static_row_count
void setAutoConnectPolicy()
static bool writeProperty(int property, ItemType *gadget, const QVariant &data)
QRangeModelImpl(Range &&model, Protocol &&protocol, QRangeModel *itemModel)
void sortSubRange(range_type &range, row_ptr expectedParent, const LessThan &lessThan)
const Structure & that() const
static constexpr bool isPrimaryRole(int role)
void updateTarget(LHS *org, RHS &©) noexcept
static constexpr bool itemsAreQObjects
static constexpr bool dynamicColumns()
range_type * childRange(const QModelIndex &index)
bool moveRows(const QModelIndex &sourceParent, int sourceRow, int count, const QModelIndex &destParent, int destRow)
QStringList mimeTypes() const
QVariant readRole(const QModelIndex &index, int role, ItemType *gadget) const
static bool resetProperty(int property, ItemType *object)
bool autoConnectPropertiesInRow(const row_type &row, int rowIndex, const QModelIndex &parent) const
bool readAt(const QModelIndex &index, F &&reader) const
static constexpr bool rowsAreQObjects
bool doInsertColumns(int column, int count, const QModelIndex &parent, InsertFn insertFn)
void updateTarget(LHS &org, RHS &©) noexcept
QMimeData * mimeData(const QModelIndexList &indexes) const
Qt::DropActions adjustSupportedDropActions(Qt::DropActions dropActions)
QMap< int, QVariant > itemData(const QModelIndex &index) const
void clearConnectionInRow(const row_type &row, int rowIndex, const QModelIndex &parent) const
bool doInsertRows(int row, int count, const QModelIndex &parent, InsertFn &&insertFn)
decltype(QRangeModelRowOptions< row_type >::mimeTypes()) hasMimeTypes_test
static auto adl_end(C &&c) -> decltype(end(QRangeModelDetails::refTo(std::forward< C >(c))))
decltype(QRangeModelRowOptions< row_type >::flags(std::declval< const row_type & >())) hasRowFlags_test
static constexpr bool hasMimeDataRowSpan
static constexpr bool hasMimeTypes
static constexpr bool has_metaobject_v
static constexpr bool is_range_v
static constexpr bool array_like_v
static constexpr bool hasMimeDataIndexList
static void rotate(C &c, int src, int count, int dst)
static constexpr bool hasDropMimeData
static constexpr bool tuple_like_v
typename QRangeModelDetails::wrapped_helper< T >::type wrapped_t
auto value(It &&it) -> decltype(it.value())
std::conjunction< std::is_swappable< decltype(*std::declval< It >())>, std::is_base_of< std::forward_iterator_tag, typename std::iterator_traits< It >::iterator_category > > test_rotate
auto key(It &&it) -> decltype(it.key())
static constexpr bool hasDropMimeDataFull
static constexpr int static_size_v
static constexpr bool isValid(const T &t) noexcept
static auto pos(C &&c, int i)
static constexpr bool hasHeaderData
static constexpr bool hasCanDropMimeData
static decltype(auto) refTo(T &&t)
static constexpr bool hasRowFlags
static auto pointerTo(T &&t)
static constexpr bool hasCanDropMimeDataFull
static auto adl_begin(C &&c) -> decltype(begin(QRangeModelDetails::refTo(std::forward< C >(c))))
static constexpr bool is_multi_role_v
friend bool operator==(const Connection &lhs, const Connection &rhs) noexcept
friend size_t qHash(const Connection &c, size_t seed) noexcept
QSet< Connection > connections
~ConnectionStorage()=default
AutoConnectContext * context
auto setParentRow(R &row, R *parent) -> decltype(row.setParentRow(parent))
auto childRows(R &row) -> decltype(row.childRows())
auto childRows(const R &row) const -> decltype(row.childRows())
auto parentRow(const R &row) const -> decltype(row.parentRow())
friend bool operator==(const Cell &lhs, const Cell &rhs) noexcept
auto newRow() -> decltype(R{})
const QModelIndex & index() const
friend decltype(auto) get(const MimeDataEntry &entry)
const wrapped_entry & entry() const
const QModelIndex m_index
QHash< int, QMetaProperty > properties
static constexpr bool cachesProperties
QHash< int, QMetaProperty > properties
static constexpr bool cachesProperties
std::remove_const_t< ModelStorage > m_model
static constexpr bool int_key
static constexpr bool hasCanDropMimeDataFull
static constexpr bool hasFlags
static constexpr bool hasMimeData
decltype(Access::flags(std::declval< const Test & >())) hasFlags_test
static constexpr bool hasReadRole
static constexpr bool hasWriteRole
static constexpr bool hasDropMimeData
decltype(Access::mimeTypes()) hasMimeTypes_test
static constexpr bool hasMimeTypes
static constexpr bool hasDropMimeDataFull
static constexpr bool hasCanDropMimeData
static QHash< int, QByteArray > roleNames(That *)
static constexpr bool has_erase
static constexpr bool has_splice
static constexpr bool has_resize
static constexpr bool is_mutable
static constexpr bool has_rotate
static constexpr bool has_cbegin
static constexpr bool has_insert
static constexpr bool is_default
static constexpr bool has_setParentRow
static constexpr bool is_list
static constexpr bool has_mutable_childRows
static constexpr bool has_deleteRow
static constexpr bool has_newRow
static constexpr bool is_tree
static constexpr bool is_table
static constexpr bool has_insert_range
static constexpr bool is_mutable
static constexpr bool has_rotate
static constexpr bool has_resize
static constexpr bool has_insert
static constexpr bool has_cbegin
static constexpr bool has_splice
static constexpr bool has_erase
static constexpr bool isMultiRole
static constexpr int fixed_size()
static bool for_each_element(const T &row, const QModelIndex &firstIndex, Fn &&fn)
static QVariant column_name(int)
static bool for_element_at(C &&container, std::size_t idx, Fn &&fn)
static constexpr int static_size
static constexpr bool is_range
static constexpr bool hasMetaObject
decltype(std::declval< C & >().sort(std::declval< LessThan && >())) sortMember_test
static constexpr bool hasCollatedCompare
const QRangeModelImpl *const that
const QCollator *const collator
auto compare(const Item &lhs, const Item &rhs) const
static constexpr bool hasSortMember
auto operator()(const Item &lhs, const Item &rhs) const
Compare(const QRangeModelImpl *impl, int column, Qt::SortOrder order)
const QModelIndex m_index
const Qt::SortOrder m_order
static std::optional< bool > compareInvalid(const Item &lhs, const Item &rhs)
bool checkComparable() const
std::input_iterator_tag iterator_category
friend bool operator==(const EmptyRowGenerator &lhs, const EmptyRowGenerator &rhs) noexcept
friend bool operator!=(const EmptyRowGenerator &lhs, const EmptyRowGenerator &rhs) noexcept
EmptyRowGenerator & operator++()
bool operator()(const value_type &value) const
const QRangeModelImpl *const that
QModelRoleDataSpan roleDataSpan
const QModelIndex & index
MimeDataItemIterator operator++(int)
MimeDataItemIterator & operator++()
std::bidirectional_iterator_tag iterator_category
MimeDataItemIterator & operator--()
bool operator!=(const MimeDataItemIterator &other) const
const_reference operator*() const
MimeDataItemIterator operator-(difference_type n) const
MimeDataItemIterator operator--(int)
const QRangeModelImpl * m_model
bool operator==(const MimeDataItemIterator &other) const
MimeDataRowIterator operator--(int)
MimeDataRowIterator operator-(difference_type n) const
bool operator!=(const MimeDataRowIterator &other) const
MimeDataRowIterator & operator--()
MimeDataRowIterator & operator++()
MimeDataRowIterator()=default
MimeDataRowIterator operator++(int)
bool operator==(const MimeDataRowIterator &other) const
MimeDataRowIterator(base_iterator it, base_iterator begin, base_iterator end, const QRangeModelImpl *model)
std::bidirectional_iterator_tag iterator_category
const_reference operator*() const
friend constexpr bool operator<(unordered, QtPrivate::CompareAgainstLiteralZero) noexcept
friend constexpr bool operator>(unordered, QtPrivate::CompareAgainstLiteralZero) noexcept