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>
944 if constexpr (QRangeModelDetails::is_owning_or_raw_pointer<Entry>()) {
950 qDebug(
"QRangeModel::mimeData: null-entry, test with isValid before accessing");
952 static const wrapped_entry emptyDefault;
956 return std::as_const(QRangeModelDetails::refTo(m_entry));
961 template <
std::size_t N>
964 if constexpr (N == 0)
965 return entry.entry();
966 else if constexpr (N == 1)
967 return entry.index();
996 template <
typename Entry>
1009 return lhs.m_row == rhs.m_row && lhs.m_column == rhs.m_column;
1045 template <
bool cacheProperties,
bool itemsAreQObjects>
1077 return lhs.sender == rhs.sender && lhs
.role == rhs
.role;
1081 return qHashMulti(seed, c.sender, c
.role);
1105 template <
typename ModelStorage,
typename =
void>
1124 template <
typename ModelStorage,
typename PropertyStorage>
1135 template <
typename Model = ModelStorage>
1171 bool setHeaderData(
int section, Qt::Orientation orientation,
const QVariant &data,
int role);
1172 bool setData(
const QModelIndex &index,
const QVariant &data,
int role);
1173 bool setItemData(
const QModelIndex &index,
const QMap<
int, QVariant> &data);
1177 bool moveColumns(
const QModelIndex &sourceParent,
int sourceColumn,
int count,
const QModelIndex &destParent,
int destColumn);
1180 bool moveRows(
const QModelIndex &sourceParent,
int sourceRow,
int count,
const QModelIndex &destParent,
int destRow);
1193 void multiData(
const QModelIndex &index, QModelRoleDataSpan roleDataSpan)
const;
1197 void sort(
int column, Qt::SortOrder order);
1199 int hits, Qt::MatchFlags flags)
const;
1205 const QModelIndex &parent)
const;
1206 bool dropMimeData(
const QMimeData *data, Qt::DropAction action,
int row,
int column,
1207 const QModelIndex &parent);
1251 template <
typename C>
1292 friend class QRangeModelPrivate;
1295 QRangeModel *m_rangeModel;
1299 : m_rangeModel(itemModel)
1305 inline void dataChanged(
const QModelIndex &from,
const QModelIndex &to,
1306 const QList<
int> &roles);
1313 inline bool beginMoveColumns(
const QModelIndex &sourceParent,
int sourceFirst,
int sourceLast,
1314 const QModelIndex &destParent,
int destRow);
1316 inline void beginInsertRows(
const QModelIndex &parent,
int start,
int count);
1318 inline void beginRemoveRows(
const QModelIndex &parent,
int start,
int count);
1320 inline bool beginMoveRows(
const QModelIndex &sourceParent,
int sourceFirst,
int sourceLast,
1321 const QModelIndex &destParent,
int destRow);
1327 const QCollator *collator);
1345 QRangeModelDetails::AutoConnectContext *context,
1346 int role,
const QMetaProperty &property);
1348 QRangeModelDetails::AutoConnectContext *context,
1349 int role,
const QMetaProperty &property);
1351 QRangeModelDetails::AutoConnectContext *context,
1352 const QHash<
int, QMetaProperty> &properties);
1354 QRangeModelDetails::AutoConnectContext *context,
1355 const QHash<
int, QMetaProperty> &properties);
1361 Qt::MatchFlags flags);
1362 static bool matchValue(
const QVariant &itemData,
const QVariant &value, Qt::MatchFlags flags)
1364 if ((flags & Qt::MatchTypeMask) == Qt::MatchExactly)
1365 return itemData == value;
1366 return matchValue(itemData.toString(), value, flags);
1372template <
typename Structure,
typename Range,
1373 typename Protocol = QRangeModelDetails::table_protocol_t<Range>>
1409 "Currently, std::optional is not supported for ranges and rows, as "
1410 "it has range semantics in c++26. Once the required behavior is clarified, "
1411 "std::optional for ranges and rows will be supported.");
1418 Structure&
that() {
return static_cast<Structure &>(*
this); }
1419 const Structure&
that()
const {
return static_cast<
const Structure &>(*
this); }
1421 template <
typename C>
1422 static constexpr int size(
const C &c)
1427 if constexpr (QRangeModelDetails::test_size<C>()) {
1429 return int(size(c));
1431#if defined(__cpp_lib_ranges)
1432 using std::ranges::distance;
1434 using std::distance;
1436 using container_type = std::conditional_t<QRangeModelDetails::range_traits<C>::has_cbegin,
1437 const QRangeModelDetails::wrapped_t<C>,
1438 QRangeModelDetails::wrapped_t<C>>;
1439 container_type& container =
const_cast<container_type &>(
QRangeModelDetails::refTo(c));
1455 return this->blockDataChangedDispatch();
1465 template <
typename T>
1485 {
return lhs.n == rhs.n; }
1487 {
return !(lhs == rhs); }
1498 "The range holding a move-only row-type must support insert(pos, start, end)");
1506 return range_features::is_mutable && row_features::is_mutable
1507 && std::is_reference_v<row_reference>
1508 && Structure::is_mutable_impl;
1525 versionNumber = QT_VERSION;
1536 if (row < 0 || column < 0 || column >= columnCount(parent)
1537 || row >= rowCount(parent)) {
1541 return that().indexImpl(row, column, parent);
1546 if (row == index.row() && column == index.column())
1550 if (column >=
this->columnCount({}))
1553 if (row == index.row())
1554 return this->createIndex(row, column, index.constInternalPointer());
1556 const_row_ptr parentRow =
static_cast<const_row_ptr>(index.constInternalPointer());
1557 const auto siblingCount = size(that().childrenOf(parentRow));
1558 if (row < 0 || row >=
int(siblingCount))
1560 return this->createIndex(row, column, parentRow);
1565 if (!index.isValid()) {
1566 if constexpr (isMutable())
1567 return Qt::ItemIsDropEnabled;
1569 return Qt::NoItemFlags;
1573 std::optional<Qt::ItemFlags> customFlags;
1574 if constexpr (QRangeModelDetails::hasRowFlags<wrapped_row_type>) {
1575 const_row_reference row = rowData(index);
1577 customFlags = QRangeModelDetails::QRangeModelRowOptions<wrapped_row_type>::flags(
1578 QRangeModelDetails::refTo(row)
1583 readAt(index, [&customFlags](
auto &&ref){
1585 using wrapped_value_type = q20::remove_cvref_t<QRangeModelDetails::wrapped_t<
decltype(ref)>>;
1586 if constexpr (QRangeModelDetails::item_access<wrapped_value_type>::hasFlags) {
1587 using ItemAccess = QRangeModelDetails::QRangeModelItemAccess<wrapped_value_type>;
1589 customFlags = ItemAccess::flags(QRangeModelDetails::refTo(ref));
1596 Qt::ItemFlags f = customFlags ? *customFlags : Structure::defaultFlags();
1598 if constexpr (!isMutable())
1599 f &= ~(Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
1601 f |= Qt::ItemNeverHasChildren;
1606 if (!
this->itemModel().mimeTypes().isEmpty()) {
1607 f |= Qt::ItemIsDragEnabled;
1608 if constexpr (isMutable())
1609 f |= Qt::ItemIsDropEnabled;
1612 if constexpr (QRangeModelDetails::is_owning_or_raw_pointer<row_type>()) {
1614 const_row_reference row = rowData(index);
1615 if (!QRangeModelDetails::isValid(row))
1616 f &= ~Qt::ItemIsDragEnabled;
1619 if constexpr (isMutable()) {
1624 if constexpr (row_traits::hasMetaObject) {
1625 if (index.column() < row_traits::fixed_size()) {
1626 const QMetaObject mo = wrapped_row_type::staticMetaObject;
1627 const QMetaProperty prop = mo.property(index.column() + mo.propertyOffset());
1628 if (prop.isWritable())
1629 f |= Qt::ItemIsEditable;
1632 using item_type =
typename row_traits::item_type;
1633 if constexpr (QRangeModelDetails::is_owning_or_raw_pointer<item_type>()) {
1635 if (!readAt(index, [](
auto &&i){
return QRangeModelDetails::isValid(i); }))
1636 f &= ~Qt::ItemIsDragEnabled;
1638 f |= Qt::ItemIsEditable;
1639 }
else if constexpr (std::is_reference_v<row_reference> && !std::is_const_v<row_reference>) {
1642 const_row_reference row = rowData(index);
1643 row_reference mutableRow =
const_cast<row_reference>(row);
1645 row_traits::for_element_at(mutableRow, index.column(), [&f](
auto &&ref){
1646 using target_type =
decltype(ref);
1647 if constexpr (QRangeModelDetails::is_owning_or_raw_pointer<target_type>()) {
1649 if (!QRangeModelDetails::isValid(ref))
1650 f &= ~Qt::ItemIsDragEnabled;
1652 if constexpr (std::is_const_v<std::remove_reference_t<target_type>>)
1653 f &= ~Qt::ItemIsEditable;
1654 else if constexpr (std::is_lvalue_reference_v<target_type>)
1655 f |= Qt::ItemIsEditable;
1660 f &= ~Qt::ItemIsEditable;
1670 if constexpr (QRangeModelDetails::hasHeaderData<wrapped_row_type>) {
1671 if (orientation == Qt::Horizontal) {
1672 result = QRangeModelDetails::QRangeModelRowOptions<wrapped_row_type>::headerData(
1675 if (result.isValid())
1680 if (role != Qt::DisplayRole || orientation != Qt::Horizontal
1681 || section < 0 || section >= columnCount({})) {
1682 return this->itemModel().QAbstractItemModel::headerData(section, orientation, role);
1685 result = row_traits::column_name(section);
1686 if (!result.isValid())
1687 result =
this->itemModel().QAbstractItemModel::headerData(section, orientation, role);
1693 if (!index.isValid())
1696 QModelRoleData result(role);
1697 multiData(index, result);
1698 return std::move(result.data());
1703 return role == Qt::RangeModelDataRole
1704 || role == Qt::RangeModelAdapterRole;
1709 return role == Qt::DisplayRole || role == Qt::EditRole;
1714 QMap<
int, QVariant> result;
1716 if (index.isValid()) {
1718 if (!readAt(index, [&result](
const auto &value) {
1719 if constexpr (std::is_convertible_v<
decltype(value),
decltype(result)>) {
1725 const auto roles =
this->itemModel().roleNames().keys();
1726 QVarLengthArray<QModelRoleData, 16> roleDataArray;
1727 roleDataArray.reserve(roles.size());
1728 for (
auto role : roles) {
1729 if (isRangeModelRole(role))
1731 roleDataArray.emplace_back(role);
1733 QModelRoleDataSpan roleDataSpan(roleDataArray);
1734 multiData(index, roleDataSpan);
1736 for (QModelRoleData &roleData : roleDataSpan) {
1737 if (roleData.data().isValid())
1738 result[roleData.role()] = std::move(roleData.data());
1747 template <
typename value_type>
1750 using multi_role = QRangeModelDetails::is_multi_role<value_type>;
1751 using wrapped_value_type = QRangeModelDetails::wrapped_t<value_type>;
1753 const auto readModelData = [&value](QModelRoleData &roleData){
1755 roleData.clearData();
1759 const int role = roleData.role();
1760 if (role == Qt::RangeModelDataRole) {
1764 if constexpr (std::is_copy_assignable_v<wrapped_value_type>)
1765 roleData.setData(QVariant::fromValue(QRangeModelDetails::refTo(value)));
1767 roleData.setData(QVariant::fromValue(QRangeModelDetails::pointerTo(value)));
1768 }
else if (role == Qt::RangeModelAdapterRole) {
1770 if constexpr (
std::is_copy_assignable_v<value_type>)
1771 roleData.setData(QVariant::fromValue(value));
1773 roleData.setData(QVariant::fromValue(QRangeModelDetails::pointerTo(value)));
1780 if constexpr (QRangeModelDetails::item_access<wrapped_value_type>::hasReadRole) {
1781 using ItemAccess = QRangeModelDetails::QRangeModelItemAccess<wrapped_value_type>;
1782 for (
auto &roleData : roleDataSpan) {
1783 if (!readModelData(roleData)) {
1784 roleData.setData(ItemAccess::readRole(QRangeModelDetails::refTo(value),
1788 }
else if constexpr (multi_role()) {
1789 const auto roleNames = [
this]() -> QHash<
int, QByteArray> {
1791 if constexpr (!multi_role::int_key)
1792 return that->itemModel().roleNames();
1796 using key_type =
typename value_type::key_type;
1797 for (
auto &roleData : roleDataSpan) {
1798 const auto &it = [&roleNames, &value, role = roleData.role()]{
1799 Q_UNUSED(roleNames);
1800 if constexpr (multi_role::int_key)
1801 return value.find(key_type(role));
1803 return value.find(roleNames.value(role));
1805 if (it != QRangeModelDetails::adl_end(value))
1806 roleData.setData(QRangeModelDetails::value(it));
1808 roleData.clearData();
1810 }
else if constexpr (has_metaobject<value_type>) {
1811 if (row_traits::fixed_size() <= 1) {
1812 for (
auto &roleData : roleDataSpan) {
1813 if (!readModelData(roleData)) {
1814 roleData.setData(that->readRole(index, roleData.role(),
1815 QRangeModelDetails::pointerTo(value)));
1818 }
else if (index.column() <= row_traits::fixed_size()) {
1819 for (
auto &roleData : roleDataSpan) {
1820 const int role = roleData.role();
1821 if (isPrimaryRole(role)) {
1822 roleData.setData(that->readProperty(index,
1823 QRangeModelDetails::pointerTo(value)));
1825 roleData.clearData();
1830 for (
auto &roleData : roleDataSpan) {
1831 const int role = roleData.role();
1832 if (isPrimaryRole(role) || isRangeModelRole(role))
1833 roleData.setData(read(value));
1835 roleData.clearData();
1846 void multiData(
const QModelIndex &index, QModelRoleDataSpan roleDataSpan)
const
1848 if (!readAt(index,
ItemReader{index, roleDataSpan,
this})) {
1849 for (
auto &roleData : roleDataSpan)
1850 roleData.clearData();
1854 bool setData(
const QModelIndex &index,
const QVariant &data,
int role)
1856 if (!index.isValid())
1859 if constexpr (isMutable()) {
1860 auto emitDataChanged = qScopeGuard([
this, &index, role]{
1861 Q_EMIT
this->dataChanged(index, index,
1862 role == Qt::EditRole || role == Qt::RangeModelDataRole
1863 || role == Qt::RangeModelAdapterRole
1864 ? QList<
int>{} : QList<
int>{role});
1869 const auto writeData = [
this, column = index.column(), &data, role](
auto &&target) ->
bool {
1870 using value_type = q20::remove_cvref_t<
decltype(target)>;
1871 using wrapped_value_type = QRangeModelDetails::wrapped_t<value_type>;
1872 using multi_role = QRangeModelDetails::is_multi_role<value_type>;
1874 if constexpr (std::conjunction_v<QRangeModelDetails::is_any_owning_ptr<value_type>,
1875 std::is_default_constructible<wrapped_value_type>>) {
1877 target.reset(
new wrapped_value_type);
1880 auto setRangeModelDataRole = [&target, &data]{
1881 constexpr auto targetMetaType = QMetaType::fromType<value_type>();
1882 const auto dataMetaType = data.metaType();
1883 constexpr bool isWrapped = QRangeModelDetails::is_wrapped<value_type>();
1884 if constexpr (!std::is_copy_assignable_v<wrapped_value_type>) {
1888 if constexpr (isWrapped) {
1889 constexpr bool is_raw_pointer = std::is_pointer_v<value_type>;
1890 if constexpr (!is_raw_pointer && std::is_copy_assignable_v<value_type>) {
1891 if (data.canConvert(targetMetaType)) {
1892 target = data.value<value_type>();
1895 }
else if constexpr (is_raw_pointer) {
1897 target = data.value<value_type>();
1906 }
else if constexpr (isWrapped) {
1911 if (
const auto mt = QMetaType::fromType<wrapped_value_type>();
1912 data.canConvert(mt)) {
1913 targetRef = data.value<wrapped_value_type>();
1915 }
else if (
const auto mtp = QMetaType::fromType<wrapped_value_type *>();
1916 data.canConvert(mtp)) {
1917 targetRef = *data.value<wrapped_value_type *>();
1921 }
else if (targetMetaType == dataMetaType) {
1922 QRangeModelDetails::refTo(target) = data.value<value_type>();
1924 }
else if (dataMetaType.flags() & QMetaType::PointerToGadget) {
1925 QRangeModelDetails::refTo(target) = *data.value<value_type *>();
1929 qCritical(
"Not able to assign %s to %s",
1930 qPrintable(QDebug::toString(data)), targetMetaType.name());
1935 if constexpr (QRangeModelDetails::item_access<wrapped_value_type>::hasWriteRole) {
1936 using ItemAccess = QRangeModelDetails::QRangeModelItemAccess<wrapped_value_type>;
1937 if (isRangeModelRole(role))
1938 return setRangeModelDataRole();
1939 return ItemAccess::writeRole(QRangeModelDetails::refTo(target), data, role);
1940 }
else if constexpr (has_metaobject<value_type>) {
1941 if (row_traits::fixed_size() <= 1) {
1942 if (isRangeModelRole(role))
1943 return setRangeModelDataRole();
1945 }
else if (column <= row_traits::fixed_size()
1946 && (isPrimaryRole(role) || isRangeModelRole(role))) {
1949 }
else if constexpr (multi_role::value) {
1950 Qt::ItemDataRole roleToSet = Qt::ItemDataRole(role);
1953 const auto roleNames = [
this]() -> QHash<
int, QByteArray> {
1955 if constexpr (!multi_role::int_key)
1956 return this->itemModel().roleNames();
1960 if (role == Qt::EditRole) {
1961 if constexpr (multi_role::int_key) {
1962 if (target.find(roleToSet) == target.end())
1963 roleToSet = Qt::DisplayRole;
1965 if (target.find(roleNames.value(roleToSet)) == target.end())
1966 roleToSet = Qt::DisplayRole;
1969 if constexpr (multi_role::int_key)
1970 return write(target[roleToSet], data);
1972 return write(target[roleNames.value(roleToSet)], data);
1973 }
else if (isPrimaryRole(role) || isRangeModelRole(role)) {
1974 return write(target, data);
1979 if (!writeAt(index, writeData)) {
1980 emitDataChanged.dismiss();
1983 if (isRangeModelRole(role) &&
this->autoConnectPolicy() == AutoConnectPolicy::Full) {
1984 if (QObject *item = data.value<QObject *>())
1985 Self::connectProperties(index, item, m_data.context, m_data.properties);
1993 template <
typename LHS,
typename RHS>
1996 if constexpr (
std::is_pointer_v<RHS>)
1998 else if constexpr (
std::is_assignable_v<LHS, RHS>)
1999 org =
std::forward<RHS>(copy);
2003 template <
typename LHS,
typename RHS>
2006 updateTarget(*org,
std::forward<RHS>(copy));
2009 bool setItemData(
const QModelIndex &index,
const QMap<
int, QVariant> &data)
2011 if (!index.isValid() || data.isEmpty())
2014 if constexpr (isMutable()) {
2015 auto emitDataChanged = qScopeGuard([
this, &index, &data]{
2016 Q_EMIT
this->dataChanged(index, index, data.keys());
2022 auto writeItemData = [
this, &tried, &data](
auto &target) ->
bool {
2024 using value_type = q20::remove_cvref_t<
decltype(target)>;
2025 using multi_role = QRangeModelDetails::is_multi_role<value_type>;
2026 using wrapped_value_type = QRangeModelDetails::wrapped_t<value_type>;
2030 auto makeCopy = [](
const value_type &original){
2031 if constexpr (!std::is_copy_assignable_v<wrapped_value_type>)
2033 else if constexpr (std::is_pointer_v<
decltype(original)>)
2035 else if constexpr (std::is_copy_assignable_v<value_type>)
2041 const auto roleNames =
this->itemModel().roleNames();
2043 if constexpr (QRangeModelDetails::item_access<wrapped_value_type>::hasWriteRole) {
2045 using ItemAccess = QRangeModelDetails::QRangeModelItemAccess<wrapped_value_type>;
2046 const auto roles = roleNames.keys();
2047 auto targetCopy = makeCopy(target);
2048 for (
int role : roles) {
2049 if (!ItemAccess::writeRole(QRangeModelDetails::refTo(targetCopy),
2050 data.value(role), role)) {
2054 updateTarget(target,
std::move(targetCopy));
2056 }
else if constexpr (multi_role()) {
2057 using key_type =
typename value_type::key_type;
2059 const auto roleName = [&roleNames](
int role) {
2060 return roleNames.value(role);
2065 if constexpr (!multi_role::int_key)
2067 auto invalid =
std::find_if(data.keyBegin(), data.keyEnd(),
2068 [&roleName](
int role) {
return roleName(role).isEmpty(); }
2071 if (invalid != data.keyEnd()) {
2073 qWarning(
"No role name set for %d", *invalid);
2079 for (
auto &&[role, value] : data.asKeyValueRange()) {
2080 if constexpr (multi_role::int_key)
2081 target[
static_cast<key_type>(role)] = value;
2083 target[QString::fromUtf8(roleName(role))] = value;
2086 }
else if constexpr (has_metaobject<value_type>) {
2087 if (row_traits::fixed_size() <= 1) {
2089 auto targetCopy = makeCopy(target);
2090 for (
auto &&[role, value] : data.asKeyValueRange()) {
2091 if (isRangeModelRole(role))
2093 if (!writeRole(role, QRangeModelDetails::pointerTo(targetCopy), value)) {
2094 const QByteArray roleName = roleNames.value(role);
2096 qWarning(
"Failed to write value '%s' to role '%s'",
2097 qPrintable(QDebug::toString(value)), roleName.data());
2102 updateTarget(target,
std::move(targetCopy));
2109 if (!writeAt(index, writeItemData)) {
2110 emitDataChanged.dismiss();
2112 return this->itemModel().QAbstractItemModel::setItemData(index, data);
2121 if (!index.isValid())
2124 if constexpr (isMutable()) {
2125 auto emitDataChanged = qScopeGuard([
this, &index]{
2126 Q_EMIT
this->dataChanged(index, index, {});
2129 auto clearData = [column = index.column()](
auto &&target) {
2130 if constexpr (row_traits::hasMetaObject) {
2131 if (row_traits::fixed_size() <= 1) {
2134 }
else if (column <= row_traits::fixed_size()) {
2144 if (!writeAt(index, clearData)) {
2145 emitDataChanged.dismiss();
2156 using item_type = QRangeModelDetails::wrapped_t<
typename row_traits::item_type>;
2157 using item_traits =
typename QRangeModelDetails::item_traits<item_type>;
2158 return item_traits::roleNames(
this);
2165 return row_traits::for_each_element(QRangeModelDetails::refTo(row),
2166 this->itemModel().index(rowIndex, 0, parent),
2167 [
this](
const QModelIndex &index,
const QObject *item) {
2168 if constexpr (isMutable())
2169 return Self::connectProperties(index, item, m_data.context, m_data.properties);
2171 return Self::connectPropertiesConst(index, item, m_data.context, m_data.properties);
2179 row_traits::for_each_element(QRangeModelDetails::refTo(row),
2180 this->itemModel().index(rowIndex, 0, parent),
2181 [
this](
const QModelIndex &,
const QObject *item) {
2182 m_data.connections.removeIf([item](
const auto &connection) {
2183 return connection.sender == item;
2192 using item_type = std::remove_pointer_t<
typename row_traits::item_type>;
2193 using Mapping = QRangeModelDetails::AutoConnectContext::AutoConnectMapping;
2195 delete m_data.context;
2196 m_data.connections = {};
2197 switch (
this->autoConnectPolicy()) {
2198 case AutoConnectPolicy::None:
2199 m_data.context =
nullptr;
2201 case AutoConnectPolicy::Full:
2202 m_data.context =
new QRangeModelDetails::AutoConnectContext(&
this->itemModel());
2204 m_data.properties = QRangeModelImplBase::roleProperties(
this->itemModel(),
2205 item_type::staticMetaObject);
2206 m_data.context->mapping = Mapping::Roles;
2208 m_data.properties = QRangeModelImplBase::columnProperties(wrapped_row_type::staticMetaObject);
2209 m_data.context->mapping = Mapping::Columns;
2211 if (!m_data.properties.isEmpty())
2212 that().autoConnectPropertiesImpl();
2214 case AutoConnectPolicy::OnRead:
2215 m_data.context =
new QRangeModelDetails::AutoConnectContext(&
this->itemModel());
2217 m_data.context->mapping = Mapping::Roles;
2219 m_data.properties = QRangeModelImplBase::columnProperties(wrapped_row_type::staticMetaObject);
2220 m_data.context->mapping = Mapping::Columns;
2226 qWarning(
"All items in the range must be QObject subclasses");
2240 template <
typename C,
typename LessThan>
2242 static constexpr bool hasSortMember = qxp::is_detected_v<sortMember_test, range_type, Compare>;
2260 template <
typename Item>
2261 auto operator()(
const Item &lhs,
const Item &rhs)
const
2263 auto ordering = compare(lhs, rhs);
2264 return m_order == Qt::AscendingOrder ? ordering < 0 : ordering > 0;
2267 template <
typename Item>
2268 auto compare(
const Item &lhs,
const Item &rhs)
const
2270 using value_type = QRangeModelDetails::wrapped_t<Item>;
2271 using multi_role = QRangeModelDetails::is_multi_role<value_type>;
2273 if constexpr (QRangeModelDetails::item_access<value_type>::hasReadRole
2274 || multi_role() || has_metaobject<value_type>) {
2282 Q_ASSERT(!reader.index.isValid());
2284 const QVariant lhsVariant =
std::move(result.data());
2286 const QVariant rhsVariant =
std::move(result.data());
2287 return QRangeModelImplBase::compareData(lhsVariant, rhsVariant, collator);
2288 }
else if constexpr (std::is_same_v<QVariant, value_type>) {
2289 return QRangeModelImplBase::compareData(lhs, rhs, collator);
2290 }
else if constexpr (QtOrderingPrivate::CompareThreeWayTester::hasCompareThreeWay_v
2291 <value_type, value_type>) {
2293 if constexpr (hasCollatedCompare<value_type>) {
2295 using ordering =
decltype(qCompareThreeWay(lhs, rhs));
2296 int res = collator->compare(lhs, rhs);
2298 return ordering::less;
2300 return ordering::greater;
2301 return ordering::equal;
2304 return qCompareThreeWay(lhs, rhs);
2312 return that->readAt(
that->index(0, 0, {}), [
this](
const auto &item){
2317 using ordering =
decltype(compare(item, item));
2320 const QMetaType itemtype = QMetaType::fromType<QRangeModelDetails::wrapped_t<
2321 q20::remove_cvref_t<
decltype(item)>>
2323 qCritical(
"QRangeModel: Cannot compare items of type %s in column %d!",
2324 itemtype.name(), m_index.column());
2335 template <
typename Item>
2343 return std::nullopt;
2353 void sort(
int column, Qt::SortOrder order)
2355 if constexpr (isMutable() && std::is_swappable_v<row_type>) {
2356 if (rowCount({}) < 2 || column >= columnCount({}))
2358 Compare compare(
this, column, order);
2359 if (!compare.checkComparable())
2362 this->beginLayoutChange();
2363 QScopeGuard endLayoutChange([
this]{
this->endLayoutChange(); });
2364 that().sortImpl([&compare](
const auto &leftRow,
const auto &rightRow) {
2365 if (
auto anyInvalid =
Compare::compareInvalid(leftRow, rightRow))
2367 return row_traits::for_element_at(leftRow, compare.m_index.column(),
2368 [&rightRow, &compare](
const auto &leftItem){
2369 return row_traits::for_element_at(rightRow, compare.m_index.column(),
2370 [&leftItem, &compare](
const auto &rightItem){
2373 if constexpr (std::is_same_v<
decltype(leftItem),
decltype(rightItem)>) {
2374 if (
auto anyInvalid = Compare::compareInvalid(leftItem, rightItem))
2376 return compare(QRangeModelDetails::refTo(leftItem),
2377 QRangeModelDetails::refTo(rightItem));
2388 template <
typename LessThan>
2389 void sortSubRange(range_type &range, row_ptr expectedParent,
const LessThan &lessThan)
2396 QModelIndexList persistentIndexes =
this->persistentIndexList();
2397 that().prunePersistentIndexList(persistentIndexes, expectedParent);
2399 if (persistentIndexes.isEmpty()) {
2400 using It =
typename range_features::iterator;
2401 constexpr bool is_random_access = std::is_base_of_v<std::random_access_iterator_tag,
2402 typename std::iterator_traits<It>::iterator_category>;
2404 if constexpr (
Compare::hasSortMember) {
2405 range.sort(lessThan);
2407 }
else if constexpr (is_random_access) {
2408 std::stable_sort(begin, end, lessThan);
2421 const int rangeSize = size(range);
2424 std::vector<SortTracker> tracked;
2425 tracked.reserve(rangeSize);
2426 std::vector<
int> newRows;
2427 newRows.resize(rangeSize);
2431 for (
auto &&it =
std::move_iterator(begin); it !=
std::move_iterator(end); ++it)
2432 tracked.emplace_back(SortTracker{*it, ++row});
2435 std::stable_sort(tracked.begin(), tracked.end(),
2436 [&lessThan](
const SortTracker &lhs,
const SortTracker &rhs){
2437 return lessThan(lhs.row, rhs.row);
2442 auto sorted =
std::move_iterator(tracked.begin());
2444 qsizetype changedIndexCount = 0;
2445 for (
int newIndex = 0; newIndex < rangeSize; ++write, ++sorted, ++newIndex) {
2446 auto &&tracker = *sorted;
2447 changedIndexCount += (tracker.index != newIndex);
2448 *write =
std::move(tracker.row);
2449 newRows[tracker.index] = newIndex;
2454 tracked.shrink_to_fit();
2457 for (
const auto &fromIndex : std::as_const(persistentIndexes)) {
2458 const int newRow = newRows.at(fromIndex.row());
2459 if (fromIndex.row() == newRow)
2461 const QModelIndex toIndex = that().indexImpl(newRow,
2463 fromIndex.parent());
2464 this->changePersistentIndex(fromIndex, toIndex);
2469 Qt::MatchFlags flags)
const
2471 return that().matchImpl(start, role,
2472 QRangeModelImplBase::convertMatchValue(value, flags), hits, flags);
2475 bool matchRow(const_row_reference row,
const QModelIndex &index,
int role,
const QVariant &value,
2476 Qt::MatchFlags flags)
const
2478 const uint matchType = (flags & Qt::MatchTypeMask).toInt();
2480 return row_traits::for_element_at(row, index.column(), [&](
const auto &element) {
2481 using value_type = q20::remove_cvref_t<
decltype(element)>;
2482 using wrapped_value_type = QRangeModelDetails::wrapped_t<value_type>;
2483 using multi_role = QRangeModelDetails::is_multi_role<value_type>;
2485 if constexpr (QRangeModelDetails::item_access<wrapped_value_type>::hasReadRole
2486 || multi_role() || has_metaobject<value_type>) {
2487 QModelRoleData roleData(role);
2488 ItemReader reader{index, roleData,
this};
2490 return QRangeModelImplBase::matchValue(roleData.data(), value, flags);
2491 }
else if constexpr (std::is_same_v<wrapped_value_type, QVariant>) {
2492 return QRangeModelImplBase::matchValue(element, value, flags);
2494 constexpr QMetaType mt = QMetaType::fromType<wrapped_value_type>();
2495 if (mt == value.metaType()) {
2496 if (matchType == Qt::MatchExactly)
2497 return mt.equals(QRangeModelDetails::pointerTo(element), value.constData());
2498 else if constexpr (std::is_same_v<wrapped_value_type, QString>)
2499 return QRangeModelImplBase::matchValue(element, value, flags);
2501 return QRangeModelImplBase::matchValue(QVariant::fromValue(QRangeModelDetails::refTo(element)),
2509 template <
typename InsertFn>
2514 range_type *
const children = childRange(parent);
2518 this->beginInsertColumns(parent, column, column + count - 1);
2520 for (
auto &child : *children) {
2521 auto it = QRangeModelDetails::pos(child, column);
2522 (
void)insertFn(QRangeModelDetails::refTo(child), it, count);
2525 this->endInsertColumns();
2531 if (m_data.context &&
this->autoConnectPolicy() == AutoConnectPolicy::Full) {
2532 for (
int r = 0; r < that().rowCount(parent); ++r) {
2533 for (
int c = column; c < column + count; ++c) {
2534 const QModelIndex index = that().index(r, c, parent);
2535 writeAt(index, [
this, &index](QObject *item){
2536 return Self::connectProperties(index, item,
2537 m_data.context, m_data.properties);
2549 if constexpr (dynamicColumns() && isMutable() && row_features::has_insert) {
2550 return doInsertColumns(column, count, parent, [](
auto &row,
auto it,
int n){
2551 row.insert(it, n, {});
2561 if constexpr (dynamicColumns() && isMutable() && row_features::has_erase) {
2562 if (column < 0 || column + count > columnCount(parent))
2565 range_type *
const children = childRange(parent);
2570 if (m_data.context &&
this->autoConnectPolicy() == AutoConnectPolicy::OnRead) {
2571 for (
int r = 0; r < that().rowCount(parent); ++r) {
2572 for (
int c = column; c < column + count; ++c) {
2573 const QModelIndex index = that().index(r, c, parent);
2574 writeAt(index, [
this](QObject *item){
2575 m_data.connections.removeIf([item](
const auto &connection) {
2576 return connection.sender == item;
2585 this->beginRemoveColumns(parent, column, column + count - 1);
2586 for (
auto &child : *children) {
2587 const auto start = QRangeModelDetails::pos(child, column);
2588 QRangeModelDetails::refTo(child).erase(start, std::next(start, count));
2590 this->endRemoveColumns();
2596 bool moveColumns(
const QModelIndex &sourceParent,
int sourceColumn,
int count,
2597 const QModelIndex &destParent,
int destColumn)
2600 if (sourceParent != destParent)
2602 if constexpr (isMutable() && (row_features::has_rotate || row_features::has_splice)) {
2603 if (!Structure::canMoveColumns(sourceParent, destParent))
2609 range_type *
const children = childRange(sourceParent);
2613 if (!
this->beginMoveColumns(sourceParent, sourceColumn, sourceColumn + count - 1,
2614 destParent, destColumn)) {
2618 for (
auto &child : *children)
2619 QRangeModelDetails::rotate(child, sourceColumn, count, destColumn);
2621 this->endMoveColumns();
2628 template <
typename InsertFn>
2629 bool doInsertRows(
int row,
int count,
const QModelIndex &parent, InsertFn &&insertFn)
2631 range_type *children = childRange(parent);
2635 this->beginInsertRows(parent, row, row + count - 1);
2637 row_ptr parentRow = parent.isValid()
2640 (
void)
std::forward<InsertFn>(insertFn)(*children, parentRow, row, count);
2644 that().resetParentInChildren(children);
2646 this->endInsertRows();
2652 if (m_data.context &&
this->autoConnectPolicy() == AutoConnectPolicy::Full) {
2654 const auto end =
std::next(begin, count);
2656 for (
auto it = begin; it != end; ++it, ++rowIndex)
2657 autoConnectPropertiesInRow(*it, rowIndex, parent);
2667 return doInsertRows(row, count, parent,
2668 [
this](range_type &children, row_ptr parentRow,
int r,
int n){
2672 if constexpr (range_features::has_insert_range) {
2675 auto start = children.insert(pos, n,
nullptr);
2678 children.insert(pos, n,
std::move(*generator));
2687 bool removeRows(
int row,
int count,
const QModelIndex &parent = {})
2690 const int prevRowCount = rowCount(parent);
2691 if (row < 0 || row + count > prevRowCount)
2694 range_type *children = childRange(parent);
2699 if (m_data.context &&
this->autoConnectPolicy() == AutoConnectPolicy::OnRead) {
2701 const auto end =
std::next(begin, count);
2703 for (
auto it = begin; it != end; ++it, ++rowIndex)
2704 clearConnectionInRow(*it, rowIndex, parent);
2708 this->beginRemoveRows(parent, row, row + count - 1);
2709 [[maybe_unused]]
bool callEndRemoveColumns =
false;
2713 if (prevRowCount == count) {
2714 if (
const int columns = columnCount(parent)) {
2715 callEndRemoveColumns =
true;
2716 this->beginRemoveColumns(parent, 0, columns - 1);
2722 const auto end =
std::next(begin, count);
2723 that().deleteRemovedRows(begin, end);
2724 children->erase(begin, end);
2728 that().resetParentInChildren(children);
2731 if (callEndRemoveColumns) {
2732 Q_ASSERT(columnCount(parent) == 0);
2733 this->endRemoveColumns();
2736 this->endRemoveRows();
2743 bool moveRows(
const QModelIndex &sourceParent,
int sourceRow,
int count,
2744 const QModelIndex &destParent,
int destRow)
2746 if constexpr (isMutable() && (range_features::has_rotate || range_features::has_splice)) {
2747 if (!Structure::canMoveRows(sourceParent, destParent))
2750 if (sourceParent != destParent) {
2751 return that().moveRowsAcross(sourceParent, sourceRow, count,
2752 destParent, destRow);
2755 if (sourceRow == destRow || sourceRow == destRow - 1 || count <= 0
2756 || sourceRow < 0 || sourceRow + count - 1 >=
this->rowCount(sourceParent)
2757 || destRow < 0 || destRow >
this->rowCount(destParent)) {
2761 range_type *source = childRange(sourceParent);
2763 if (!
this->beginMoveRows(sourceParent, sourceRow, sourceRow + count - 1, destParent, destRow))
2768 that().resetParentInChildren(source);
2770 this->endMoveRows();
2782 int rowCount(
const QModelIndex &parent)
const {
return that().rowCountImpl(parent); }
2787 return row_traits::fixed_size();
2791 int columnCount(
const QModelIndex &parent)
const {
return that().columnCountImpl(parent); }
2796 if constexpr (!isMutable())
2797 dragActions &= ~Qt::MoveAction;
2802 if constexpr (!isMutable())
2803 dropActions = Qt::IgnoreAction;
2810 using ItemType = QRangeModelDetails::wrapped_t<
typename row_traits::item_type>;
2811 if constexpr (QRangeModelDetails::item_access<ItemType>::hasMimeTypes)
2812 return QRangeModelDetails::QRangeModelItemAccess<ItemType>::mimeTypes();
2813 else if constexpr (QRangeModelDetails::hasMimeTypes<wrapped_row_type>)
2814 return QRangeModelDetails::QRangeModelRowOptions<wrapped_row_type>::mimeTypes();
2816 return this->itemModel().QAbstractItemModel::mimeTypes();
2820 const QModelIndex &target)
const
2822 if constexpr (isMutable()) {
2824 using RowOptions = QRangeModelDetails::QRangeModelRowOptions<wrapped_row_type>;
2825 using ItemType = QRangeModelDetails::wrapped_t<
typename row_traits::item_type>;
2826 using ItemAccess = QRangeModelDetails::QRangeModelItemAccess<ItemType>;
2827 if constexpr (QRangeModelDetails::item_access<ItemType>::hasCanDropMimeDataFull) {
2828 canDrop = ItemAccess::canDropMimeData(data, action, row, column, target);
2829 }
else if constexpr (QRangeModelDetails::hasCanDropMimeDataFull<wrapped_row_type>) {
2830 canDrop = RowOptions::canDropMimeData(data, action, row, column, target);
2832 canDrop =
this->itemModel().QAbstractItemModel::canDropMimeData(data, action, row,
2834 if constexpr (QRangeModelDetails::item_access<ItemType>::hasCanDropMimeData)
2835 canDrop &= ItemAccess::canDropMimeData(data);
2836 else if constexpr (QRangeModelDetails::hasCanDropMimeData<wrapped_row_type>)
2837 canDrop &= RowOptions::canDropMimeData(data);
2846 template <Qt::Orientation orient,
typename Entry>
2847 bool doDropMimeData(std::vector<QRangeModelDetails::DroppedEntry<Entry>> &droppedEntries,
2848 DropOperation dropOperation,
int row,
int column,
const QModelIndex &target)
2851 using Cell =
typename DroppedEntry::Cell;
2852 if (dropOperation == DropOperation::DontDrop)
2855 const bool dropOnTarget = row == -1 && column == -1 && target.isValid();
2856 const QModelIndex parent = dropOperation == DropOperation::InsertAsChildren
2857 ? target.siblingAtColumn(0) : target.parent();
2860 if constexpr (orient == Qt::Horizontal)
2865 int rightColumn = -1;
2868 int maxColumn = that().columnCount(parent) - 1;
2869 for (
auto &droppedEntry : droppedEntries) {
2870 if (droppedEntry.m_cell == Cell{-1, -1}) {
2871 if constexpr (orient == Qt::Horizontal) {
2874 droppedEntry.m_cell = {lastCell.m_row, lastCell.m_column + 1};
2875 if (droppedEntry.m_cell.m_column > maxColumn) {
2876 droppedEntry.m_cell.m_column = 0;
2877 ++droppedEntry.m_cell.m_row;
2880 droppedEntry.m_cell = {lastCell.m_row + 1, lastCell.m_column};
2883 lastCell = droppedEntry.m_cell;
2884 bottomRow = std::max(lastCell.m_row, bottomRow);
2885 rightColumn = std::max(lastCell.m_column, rightColumn);
2888 if (dropOperation == DropOperation::InsertAsChildren) {
2889 row = rowCount(parent);
2891 }
else if (dropOnTarget) {
2893 column = target.column();
2896 row = rowCount(parent);
2901 const bool overwrite = dropOperation == DropOperation::OverwriteAndIgnore
2902 || dropOperation == DropOperation::OverwriteAndExtend;
2905 const int overwriteRows = overwrite
2906 ?
std::min(bottomRow + 1, rowCount(parent) - row)
2908 const int newRows = dropOperation == DropOperation::OverwriteAndExtend
2909 ? bottomRow - overwriteRows + 1
2910 : (dropOperation == DropOperation::InsertAsChildren
2911 || dropOperation == DropOperation::InsertAsSiblings)
2914 if (newRows > 0 && !insertRows(row, newRows, parent))
2918 const int overwriteColumns = overwrite
2919 ?
std::min(rightColumn + 1, columnCount(parent) - column)
2921 const int newColumns = dropOperation == DropOperation::OverwriteAndExtend
2922 ? rightColumn - overwriteColumns + 1 : 0;
2923 if (newColumns > 0 && !insertColumns(column, newColumns, parent))
2927 range_type *parentRange = that().childRange(parent);
2930 range_type &targetRange = *parentRange;
2932 int maxRow = that().rowCount(parent) - 1;
2933 maxColumn = that().columnCount(parent) - 1;
2934 auto begin =
std::move_iterator(droppedEntries.begin());
2935 auto end =
std::move_iterator(droppedEntries.end());
2936 for (; begin != end; ++begin) {
2937 DroppedEntry droppedEntry = *begin;
2938 const Cell cell = {droppedEntry.m_cell.m_row + row, droppedEntry.m_cell.m_column + column};
2939 if (cell.m_row > maxRow || cell.m_column > maxColumn)
2942 if constexpr (orient == Qt::Vertical) {
2943 if constexpr (QRangeModelDetails::is_owning_or_raw_pointer<row_type>()) {
2945 *writeRow =
this->protocol().newRow();
2946 **writeRow =
std::move(droppedEntry);
2948 *writeRow =
std::move(droppedEntry);
2951 row_traits::for_element_at(*writeRow, cell.m_column, [&](
auto &item){
2952 using item_type = q20::remove_cvref_t<
decltype(item)>;
2953 using wrapped_item_type = QRangeModelDetails::wrapped_t<item_type>;
2954 if constexpr (QRangeModelDetails::is_any_owning_ptr<item_type>()) {
2955 if (!QRangeModelDetails::isValid(item))
2956 item.reset(
new wrapped_item_type{std::move(droppedEntry)});
2958 *item = std::move(droppedEntry);
2959 }
else if (!QRangeModelDetails::isValid(item)) {
2962 item = std::move(droppedEntry);
2969 that().resetParentInChildren(&targetRange);
2971 const QModelIndex topLeft = index(row, column, parent);
2972 const QModelIndex bottomRight = orient == Qt::Horizontal
2973 ? sibling(row + bottomRow, column + rightColumn, topLeft)
2974 : sibling(row + bottomRow, maxColumn, topLeft);
2975 this->dataChanged(topLeft, bottomRight, {});
2980 bool dropMimeData(
const QMimeData *data, Qt::DropAction action,
int row,
int column,
2981 const QModelIndex &target)
2983 if constexpr (isMutable()) {
2984 if (!canDropMimeData(data, action, row, column, target))
2987 const bool dropOnTarget = row == -1 && column == -1 && target.isValid();
2989 auto automaticDropOption = [=](
auto dropResult){
2990 DropOperation dropOperation;
2991 if constexpr (
std::is_same_v<
bool,
decltype(dropResult)>) {
2992 dropOperation = dropResult ? DropOperation::Automatic
2993 : DropOperation::DontDrop;
2995 dropOperation =
static_cast<DropOperation>(dropResult);
2998 if (dropOperation == DropOperation::Automatic) {
2999 if constexpr (!canInsertRows())
3000 dropOperation = DropOperation::OverwriteAndIgnore;
3001 else if (!dropOnTarget)
3002 dropOperation = DropOperation::InsertAsSiblings;
3003 else if (target.siblingAtColumn(0).flags().testFlag(Qt::ItemNeverHasChildren))
3004 dropOperation = DropOperation::OverwriteAndExtend;
3006 dropOperation = DropOperation::InsertAsChildren;
3008 return dropOperation;
3011 using ItemType = QRangeModelDetails::wrapped_t<
typename row_traits::item_type>;
3012 if constexpr (QRangeModelDetails::item_access<ItemType>::hasDropMimeDataFull
3013 || QRangeModelDetails::item_access<ItemType>::hasDropMimeData) {
3014 using ItemAccess = QRangeModelDetails::QRangeModelItemAccess<ItemType>;
3015 using DroppedItem = QRangeModelDetails::DroppedEntry<ItemType>;
3016 std::vector<DroppedItem> droppedItems;
3017 DropOperation dropOperation = automaticDropOption([&]{
3018 auto inserter =
std::back_inserter(droppedItems);
3019 if constexpr (QRangeModelDetails::item_access<ItemType>::hasDropMimeDataFull)
3020 return ItemAccess::dropMimeData(data, action, row, column, target, inserter);
3022 return ItemAccess::dropMimeData(data, inserter);
3024 if (doDropMimeData<Qt::Horizontal>(droppedItems, dropOperation, row, column, target))
3027 }
else if constexpr (QRangeModelDetails::hasDropMimeDataFull<wrapped_row_type>
3028 || QRangeModelDetails::hasDropMimeData<wrapped_row_type>) {
3029 using RowOptions = QRangeModelDetails::QRangeModelRowOptions<wrapped_row_type>;
3030 using DroppedRow = QRangeModelDetails::DroppedEntry<wrapped_row_type>;
3031 std::vector<DroppedRow> droppedRows;
3032 DropOperation dropOperation = automaticDropOption([&]{
3033 auto inserter =
std::back_inserter(droppedRows);
3034 if constexpr (QRangeModelDetails::hasDropMimeDataFull<wrapped_row_type>)
3035 return RowOptions::dropMimeData(data, action, row, column, target, inserter);
3037 return RowOptions::dropMimeData(data, inserter);
3039 if (doDropMimeData<Qt::Vertical>(droppedRows, dropOperation, row, column, target))
3043 if (dropOnTarget && that().dropOnItem(data, target))
3061 using pointer [[maybe_unused]] =
void;
3067 , m_columnCount(model->columnCount({}))
3069 updateCurrentIndexFullRow();
3074 const QModelIndex &index = *m_it;
3075 return {m_model->rowData(index),
3076 m_currentIndexIsFullRow
3077 ? m_model->createIndex(m_it->row(), -1, m_it->internalPointer()) : index};
3081 if (m_currentIndexIsFullRow)
3082 m_it += m_columnCount;
3085 updateCurrentIndexFullRow();
3092 m_currentIndexIsFullRow =
false;
3093 const int lastColumn = m_columnCount - 1;
3094 if (m_it - m_begin >= lastColumn && m_it->column() == lastColumn) {
3095 const QModelIndex &firstInRow = m_it[-lastColumn];
3096 if (m_it->row() == firstInRow.row()
3097 && firstInRow.internalPointer() == m_it->internalPointer()) {
3098 m_currentIndexIsFullRow =
true;
3108 auto tmp = *
this; tmp.m_it -= n;
return tmp;
3115 void updateCurrentIndexFullRow()
3117 m_currentIndexIsFullRow =
false;
3118 if (m_it == m_end || m_it->column() || m_end - m_it < m_columnCount)
3120 const QModelIndex &lastInRow = m_it[m_columnCount - 1];
3121 m_currentIndexIsFullRow = lastInRow.row() == m_it->row()
3122 && lastInRow.internalPointer() == m_it->internalPointer();
3126 base_iterator m_begin;
3127 base_iterator m_end;
3129 int m_columnCount = 0;
3130 bool m_currentIndexIsFullRow =
false;
3144 using pointer [[maybe_unused]] =
void;
3148 const QModelIndex &index = *m_it;
3150 const item_type *pitem =
nullptr;
3151 const auto &row =
m_model->rowData(index);
3153 row_traits::for_element_at(QRangeModelDetails::refTo(row), index.column(),
3154 [&pitem](
const auto &item){
3159 if constexpr (QRangeModelDetails::is_owning_or_raw_pointer<item_type>()) {
3164 return {*pitem, index};
3174 auto tmp = *
this; tmp.m_it -= n;
return tmp;
3184 template <
typename Iterator>
3200 QMimeData *result =
nullptr;
3201 using RowOptions = QRangeModelDetails::QRangeModelRowOptions<wrapped_row_type>;
3202 using ItemType = QRangeModelDetails::wrapped_t<
typename row_traits::item_type>;
3204 if constexpr (QRangeModelDetails::item_access<ItemType>::hasMimeData) {
3205 using ItemAccess = QRangeModelDetails::QRangeModelItemAccess<ItemType>;
3208 result = ItemAccess::mimeData(MimeDataRange<MimeDataItemIterator>{begin, end});
3209 }
else if constexpr (QRangeModelDetails::hasMimeDataRowSpan<wrapped_row_type>) {
3210 const auto begin =
MimeDataRowIterator(indexes.begin(), indexes.begin(), indexes.end(),
this);
3211 const auto end =
MimeDataRowIterator(indexes.end(), indexes.begin(), indexes.end(),
this);
3212 result = RowOptions::mimeData(MimeDataRange<MimeDataRowIterator>{begin, end});
3213 }
else if constexpr (QRangeModelDetails::hasMimeDataIndexList<wrapped_row_type>) {
3214 result = RowOptions::mimeData(indexes);
3280 static constexpr bool modelCopied = !QRangeModelDetails::is_wrapped<Range>() &&
3281 (std::is_reference_v<Range> || std::is_const_v<std::remove_reference_t<Range>>);
3283 static constexpr bool modelShared = QRangeModelDetails::is_any_shared_ptr<Range>();
3285 static constexpr bool default_row_deleter = protocol_traits::is_default &&
3286 protocol_traits::has_deleteRow;
3288 static constexpr bool ambiguousRowOwnership = (modelCopied || modelShared) &&
3291 static_assert(!ambiguousRowOwnership,
3292 "Using of copied and shared tree and table models with rows as raw pointers, "
3293 "and the default protocol is not allowed due to ambiguity of rows ownership. "
3294 "Move the model in, use another row type, or implement a custom tree protocol.");
3296 if constexpr (protocol_traits::has_deleteRow && !std::is_pointer_v<Range>
3297 && !QRangeModelDetails::is_any_of<Range, std::reference_wrapper>()) {
3300 that().deleteRemovedRows(begin, end);
3306 if constexpr (dynamicColumns() && !row_features::has_resize) {
3310 }
else if constexpr (!protocol_traits::has_newRow) {
3313 }
else if constexpr (!range_features::has_insert_range
3314 && !std::is_copy_constructible_v<row_type>) {
3320 return Structure::canInsertRowsImpl();
3326 return Structure::canRemoveRowsImpl();
3329 template <
typename F>
3330 bool writeAt(
const QModelIndex &index, F&& writer)
3332 row_reference row = rowData(index);
3335 return row_traits::for_element_at(row, index.column(), [&writer](
auto &&target) {
3336 using target_type =
decltype(target);
3338 if constexpr (std::is_lvalue_reference_v<target_type>
3339 && !std::is_const_v<std::remove_reference_t<target_type>>) {
3340 return writer(std::forward<target_type>(target));
3347 template <
typename F>
3348 bool readAt(
const QModelIndex &index, F&& reader)
const {
3349 const_row_reference row = rowData(index);
3352 return row_traits::for_element_at(row, index.column(), std::forward<F>(reader));
3355 template <
typename Value>
3358 if constexpr (std::is_constructible_v<QVariant, Value>)
3359 return QVariant(value);
3361 return QVariant::fromValue(value);
3363 template <
typename Value>
3367 if constexpr (std::is_constructible_v<QVariant, Value *>)
3368 return QVariant(value);
3370 return read(*value);
3375 template <
typename Target>
3376 static bool write(Target &target,
const QVariant &value)
3378 using Type = std::remove_reference_t<Target>;
3379 if constexpr (std::is_constructible_v<Target, QVariant>) {
3382 }
else if (value.canConvert<Type>()) {
3383 target = value.value<Type>();
3388 template <
typename Target>
3389 static bool write(Target *target,
const QVariant &value)
3392 return write(*target, value);
3396 template <
typename ItemType>
3400 operator QMetaProperty()
const {
3401 const QByteArray roleName = that.itemModel().roleNames().value(role);
3402 const QMetaObject &mo = ItemType::staticMetaObject;
3403 if (
const int index = mo.indexOfProperty(roleName.data());
3405 return mo.property(index);
3409 const QRangeModelImpl &that;
3411 } findProperty{*
this, role};
3413 if constexpr (ModelData::cachesProperties)
3414 return *m_data.properties.tryEmplace(role, findProperty).iterator;
3416 return findProperty;
3420 const QObject *gadget,
const QMetaProperty &prop)
const
3422 if (!index.isValid())
3424 const typename ModelData::Connection connection = {gadget, role};
3425 if (prop.hasNotifySignal() &&
this->autoConnectPolicy() == AutoConnectPolicy::OnRead
3426 && !m_data.connections.contains(connection)) {
3427 if constexpr (isMutable())
3428 Self::connectProperty(index, gadget, m_data.context, role, prop);
3430 Self::connectPropertyConst(index, gadget, m_data.context, role, prop);
3431 m_data.connections.insert(connection);
3435 template <
typename ItemType>
3438 using item_type = std::remove_pointer_t<ItemType>;
3440 QMetaProperty prop = roleProperty<item_type>(role);
3441 if (!prop.isValid() && role == Qt::EditRole) {
3442 role = Qt::DisplayRole;
3443 prop = roleProperty<item_type>(Qt::DisplayRole);
3446 if (prop.isValid()) {
3447 if constexpr (itemsAreQObjects)
3448 connectPropertyOnRead(index, role, gadget, prop);
3449 result = readProperty(prop, gadget);
3454 template <
typename ItemType>
3457 return readRole(index, role, &gadget);
3460 template <
typename ItemType>
3463 if constexpr (std::is_base_of_v<QObject, ItemType>)
3464 return prop.read(gadget);
3466 return prop.readOnGadget(gadget);
3469 template <
typename ItemType>
3472 using item_type = std::remove_pointer_t<ItemType>;
3473 const QMetaObject &mo = item_type::staticMetaObject;
3474 const QMetaProperty prop = mo.property(index.column() + mo.propertyOffset());
3476 if constexpr (rowsAreQObjects)
3477 connectPropertyOnRead(index, Qt::DisplayRole, gadget, prop);
3479 return readProperty(prop, gadget);
3482 template <
typename ItemType>
3485 return readProperty(index, &gadget);
3488 template <
typename ItemType>
3489 bool writeRole(
int role, ItemType *gadget,
const QVariant &data)
3491 using item_type = std::remove_pointer_t<ItemType>;
3492 auto prop = roleProperty<item_type>(role);
3493 if (!prop.isValid() && role == Qt::EditRole)
3494 prop = roleProperty<item_type>(Qt::DisplayRole);
3496 return prop.isValid() ? writeProperty(prop, gadget, data) :
false;
3499 template <
typename ItemType>
3500 bool writeRole(
int role, ItemType &&gadget,
const QVariant &data)
3502 return writeRole(role, &gadget, data);
3505 template <
typename ItemType>
3506 static bool writeProperty(
const QMetaProperty &prop, ItemType *gadget,
const QVariant &data)
3508 if constexpr (std::is_base_of_v<QObject, ItemType>)
3509 return prop.write(gadget, data);
3511 return prop.writeOnGadget(gadget, data);
3513 template <
typename ItemType>
3516 using item_type = std::remove_pointer_t<ItemType>;
3517 const QMetaObject &mo = item_type::staticMetaObject;
3518 return writeProperty(mo.property(property + mo.propertyOffset()), gadget, data);
3521 template <
typename ItemType>
3522 static bool writeProperty(
int property, ItemType &&gadget,
const QVariant &data)
3524 return writeProperty(property, &gadget, data);
3527 template <
typename ItemType>
3530 using item_type = std::remove_pointer_t<ItemType>;
3531 const QMetaObject &mo = item_type::staticMetaObject;
3532 bool success =
true;
3533 if (property == -1) {
3535 if constexpr (std::is_base_of_v<QObject, item_type>) {
3536 for (
int p = mo.propertyOffset(); p < mo.propertyCount(); ++p)
3537 success = writeProperty(mo.property(p), object, {}) && success;
3542 success = writeProperty(mo.property(property + mo.propertyOffset()), object, {});
3547 template <
typename ItemType>
3550 return resetProperty(property, &object);
3556 Q_ASSERT(index.isValid());
3557 return that().rowDataImpl(index);
3562 Q_ASSERT(index.isValid());
3563 return that().rowDataImpl(index);
3568 if (!index.isValid())
3569 return m_data.model();
3572 return that().childRangeImpl(index);
3577 if (!index.isValid())
3578 return m_data.model();
3581 return that().childRangeImpl(index);
3592template <
typename Range,
typename Protocol>
3599 using range_type =
typename Base::range_type;
3600 using range_features =
typename Base::range_features;
3601 using row_type =
typename Base::row_type;
3602 using row_ptr =
typename Base::row_ptr;
3603 using const_row_ptr =
typename Base::const_row_ptr;
3605 using tree_traits =
typename Base::protocol_traits;
3606 static constexpr bool is_mutable_impl = tree_traits::has_mutable_childRows;
3608 static constexpr bool rows_are_any_refs_or_pointers = Base::rows_are_raw_pointers ||
3609 QRangeModelDetails::is_smart_ptr<row_type>() ||
3610 QRangeModelDetails::is_any_of<row_type,
std::reference_wrapper>();
3611 static_assert(!Base::dynamicColumns(),
"A tree must have a static number of columns!");
3615 : Base(
std::forward<Range>(model),
std::forward<Protocol>(p), itemModel)
3620 for (
auto &&child : children)
3632 auto *children =
this->childRange(parent);
3635 return autoConnectPropertiesRange(QRangeModelDetails::refTo(children), parent);
3641 if (!parent.isValid())
3642 return this->createIndex(row, column);
3644 if (parent.column())
3645 return QModelIndex();
3647 const_row_ptr grandParent =
static_cast<const_row_ptr>(parent.constInternalPointer());
3648 const auto &parentSiblings = childrenOf(grandParent);
3655 if (!child.isValid())
3659 const_row_ptr parentRow =
static_cast<const_row_ptr>(child.constInternalPointer());
3664 auto &&grandParent =
this->protocol().parentRow(
QRangeModelDetails::refTo(parentRow));
3665 const range_type &parentSiblings = childrenOf(
QRangeModelDetails::pointerTo(grandParent));
3669 const auto it =
std::find_if(begin, end, [parentRow](
auto &&s){
3673 return this->createIndex(
std::distance(begin, it), 0,
3680 return Base::size(
this->childRange(parent));
3687 return Base::fixedColumnCount();
3692 return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
3700 return (rows_are_any_refs_or_pointers || tree_traits::has_setParentRow)
3701 && Base::dynamicRows() && range_features::has_insert;
3709 return (rows_are_any_refs_or_pointers || tree_traits::has_setParentRow)
3710 && Base::dynamicRows() && range_features::has_erase;
3718 static constexpr bool canMoveRows(
const QModelIndex &,
const QModelIndex &)
3724 const QModelIndex &destParent,
int destRow)
3729 if constexpr (!rows_are_any_refs_or_pointers && !tree_traits::has_setParentRow) {
3731 }
else if constexpr (!(range_features::has_insert && range_features::has_erase)) {
3733 }
else if (!
this->beginMoveRows(sourceParent, sourceRow, sourceRow + count - 1,
3734 destParent, destRow)) {
3738 range_type *source =
this->childRange(sourceParent);
3739 range_type *destination =
this->childRange(destParent);
3744 if constexpr (range_features::has_insert_range) {
3746 const auto sourceEnd =
std::next(sourceStart, count);
3748 destination->insert(destStart,
std::move_iterator(sourceStart),
3749 std::move_iterator(sourceEnd));
3750 }
else if constexpr (
std::is_copy_constructible_v<row_type>) {
3752 destination->insert(destStart, count, row_type{});
3755 row_ptr parentRow = destParent.isValid()
3761 if (parentRow ==
static_cast<row_ptr>(sourceParent.internalPointer())) {
3762 if (sourceParent.row() < destRow) {
3763 source =
this->childRange(sourceParent);
3766 source =
this->childRange(
this->createIndex(sourceParent.row() + count, 0,
3767 sourceParent.internalPointer()));
3774 const auto writeEnd =
std::next(writeStart, count);
3776 const auto sourceEnd =
std::next(sourceStart, count);
3778 for (
auto write = writeStart, read = sourceStart; write != writeEnd; ++write, ++read) {
3781 if constexpr (!range_features::has_insert_range)
3782 *write =
std::move(*read);
3786 source->erase(sourceStart, sourceEnd);
3796 this->endMoveRows();
3804 static_assert(tree_traits::has_setParentRow);
3805 row_type empty_row =
this->protocol().newRow();
3811 template <
typename It,
typename Sentinel>
3814 if constexpr (tree_traits::has_deleteRow) {
3815 for (
auto it = begin; it != end; ++it) {
3816 if constexpr (Base::isMutable()) {
3817 decltype(
auto) children =
this->protocol().childRows(
QRangeModelDetails::refTo(*it));
3825 this->protocol().deleteRow(
std::move(*it));
3832 const auto persistentIndexList =
this->persistentIndexList();
3833 const auto [firstColumn, lastColumn] = [&persistentIndexList]{
3834 int first = std::numeric_limits<
int>::max();
3836 for (
const auto &pmi : persistentIndexList) {
3837 first = (
std::min)(pmi.column(), first);
3838 last = (
std::max)(pmi.column(), last);
3840 return std::pair(first, last);
3848 if constexpr (tree_traits::has_setParentRow && !rows_are_any_refs_or_pointers) {
3849 const bool changePersistentIndexes = pmiToColumn >= pmiFromColumn;
3852 for (
auto it = begin; it != end; ++it) {
3853 decltype(
auto) maybeChildren =
this->protocol().childRows(*it);
3859 for (
auto &child : childrenRef) {
3860 const_row_ptr oldParent =
this->protocol().parentRow(child);
3861 if (oldParent != parentRow) {
3862 if (changePersistentIndexes) {
3863 for (
int column = pmiFromColumn; column <= pmiToColumn; ++column) {
3864 this->changePersistentIndex(
this->createIndex(row, column, oldParent),
3865 this->createIndex(row, column, parentRow));
3868 this->protocol().setParentRow(child, parentRow);
3881 for (
const auto &row : range) {
3882 if (!
this->autoConnectPropertiesInRow(row, rowIndex, parent))
3887 if (!autoConnectPropertiesRange(QRangeModelDetails::refTo(children),
3888 this->itemModel().index(rowIndex, 0, parent))) {
3899 return autoConnectPropertiesRange(*
this->m_data.model(), {});
3904 const_row_ptr parentRow =
static_cast<const_row_ptr>(index.constInternalPointer());
3905 const range_type &siblings = childrenOf(parentRow);
3906 Q_ASSERT(index.row() <
int(Base::size(siblings)));
3912 row_ptr parentRow =
static_cast<row_ptr>(index.internalPointer());
3913 range_type &siblings = childrenOf(parentRow);
3914 Q_ASSERT(index.row() <
int(Base::size(siblings)));
3920 const auto &row =
this->rowData(index);
3922 return static_cast<
const range_type *>(
nullptr);
3924 decltype(
auto) children =
this->protocol().childRows(
QRangeModelDetails::refTo(row));
3930 auto &row =
this->rowData(index);
3932 return static_cast<range_type *>(
nullptr);
3934 decltype(
auto) children =
this->protocol().childRows(
QRangeModelDetails::refTo(row));
3935 using Children = std::remove_reference_t<
decltype(children)>;
3937 if constexpr (QRangeModelDetails::is_any_of<Children, std::optional>())
3938 if constexpr (std::is_default_constructible<
typename Children::value_type>()) {
3940 children.emplace(range_type{});
3949 : *
this->m_data.model();
3955 : *
this->m_data.model();
3958 template <
typename LessThan>
3961 for (
auto &row : range) {
3962 decltype(
auto) children =
this->protocol().childRows(
QRangeModelDetails::refTo(row));
3968 this->sortSubRange(range, parentRow, lessThan);
3971 template <
typename LessThan>
3974 sortImplRecursive(*
this->m_data.model(),
nullptr, lessThan);
3980 erase_if(list, [expectedParent](
const QModelIndex &index){
3981 return static_cast<row_ptr>(index.internalPointer()) != expectedParent;
3986 int role,
const QVariant &value,
int hits, Qt::MatchFlags flags,
int column,
3987 QModelIndexList &result)
const
3992 const bool recurse = flags.testAnyFlag(Qt::MatchRecursive);
3993 const bool allHits = (hits == -1);
3995 for (
int r = from; it != end && r < to && (allHits || result.size() < hits); ++it, ++r) {
3996 const QModelIndex index =
this->createIndex(r, column, parentPtr);
3997 if (
this->matchRow(*it, index, role, value, flags))
3998 result.append(index);
4001 decltype(
auto) children =
this->protocol().childRows(
QRangeModelDetails::refTo(*it));
4004 matchImplRecursive(QRangeModelDetails::refTo(children),
4005 QRangeModelDetails::pointerTo(*it), 0,
4006 int(QRangeModelDetails::size(QRangeModelDetails::refTo(children))),
4007 role, value, hits, flags, column, result);
4014 Qt::MatchFlags flags)
const
4016 QModelIndexList result;
4017 const bool wrap = flags.testAnyFlag(Qt::MatchWrap);
4018 const int column = start.column();
4019 const int from = start.row();
4020 const int to =
this->rowCount(start.parent());
4022 for (
int i = 0; (wrap && i < 2) || (!wrap && i < 1); ++i) {
4023 const int fromRow = (i == 0) ? from : 0;
4024 const int toRow = (i == 0) ? to : from;
4025 matchImplRecursive(*
this->m_data.model(),
nullptr, fromRow, toRow,
4026 role, value, hits, flags, column, result);
4040template <
typename Range>
4047 static constexpr bool is_mutable_impl =
true;
4065 if constexpr (Base::dynamicColumns()) {
4066 if (column <
int(Base::size(*QRangeModelDetails::pos(*
this->m_data.model(), row))))
4067 return this->createIndex(row, column);
4070 qCritical(
"QRangeModel: Column-range at row %d is not large enough!", row);
4074 return this->createIndex(row, column);
4085 if (parent.isValid())
4087 return int(Base::size(*
this->m_data.model()));
4092 if (parent.isValid())
4096 if constexpr (Base::dynamicColumns()) {
4097 return int(Base::size(*
this->m_data.model()) == 0
4099 : Base::size(*QRangeModelDetails::adl_begin(*
this->m_data.model())));
4101 return Base::fixedColumnCount();
4107 return Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemNeverHasChildren;
4112 return Base::dynamicRows() && range_features::has_insert;
4117 return Base::dynamicRows() && range_features::has_erase;
4120 static constexpr bool canMoveColumns(
const QModelIndex &source,
const QModelIndex &destination)
4122 return !source.isValid() && !destination.isValid();
4125 static constexpr bool canMoveRows(
const QModelIndex &source,
const QModelIndex &destination)
4127 return !source.isValid() && !destination.isValid();
4131 const QModelIndex &,
int)
noexcept
4139 row_type empty_row =
this->protocol().newRow();
4142 if constexpr (Base::dynamicColumns() && row_features::has_resize) {
4150 template <
typename It,
typename Sentinel>
4153 if constexpr (Base::protocol_traits::has_deleteRow) {
4154 for (
auto it = begin; it != end; ++it)
4155 this->protocol().deleteRow(
std::move(*it));
4161 Q_ASSERT(q20::cmp_less(index.row(), Base::size(*
this->m_data.model())));
4167 Q_ASSERT(q20::cmp_less(index.row(), Base::size(*
this->m_data.model())));
4184 return *
this->m_data.model();
4190 return *
this->m_data.model();
4201 for (
const auto &row : *
this->m_data.model()) {
4202 result &=
this->autoConnectPropertiesInRow(row, rowIndex, {});
4208 template <
typename LessThan>
4211 this->sortSubRange(*
this->m_data.model(),
nullptr, lessThan);
4217 int hits, Qt::MatchFlags flags)
const
4219 QModelIndexList result;
4220 const bool wrap = flags.testAnyFlag(Qt::MatchWrap);
4221 const bool allHits = (hits == -1);
4222 const int column = start.column();
4223 int from = start.row();
4224 int to =
this->rowCount({});
4225 decltype(
auto) siblings = *
this->m_data.model();
4227 for (
int i = 0; (wrap && i < 2) || (!wrap && i < 1); ++i) {
4230 for (
int r = from; it != end && r < to && (allHits || result.size() < hits);
4234 const QModelIndex index =
this->createIndex(r, column,
nullptr);
4235 if (
this->matchRow(*it, index, role, value, flags))
4236 result.append(index);
4248 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)
QModelIndexList matchImpl(const QModelIndex &start, int role, const QVariant &value, int hits, Qt::MatchFlags flags) const
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
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 &)
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
bool dropOnItem(const QMimeData *, const QModelIndex &)
QModelIndexList matchImpl(const QModelIndex &start, int role, const QVariant &value, int hits, Qt::MatchFlags flags) const
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)
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)
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
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 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)
bool matchRow(const_row_reference row, const QModelIndex &index, int role, const QVariant &value, Qt::MatchFlags flags) const
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