2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2014-04-07 17:40:43 +02:00
|
|
|
|
|
|
|
|
#include "itemviews.h"
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\class Utils::TreeView
|
2023-05-22 14:38:47 +02:00
|
|
|
\inmodule QtCreator
|
2014-04-07 17:40:43 +02:00
|
|
|
|
|
|
|
|
\brief The TreeView adds setActivationMode to QTreeView
|
|
|
|
|
to allow for single click/double click behavior on
|
|
|
|
|
platforms where the default is different. Use with care.
|
|
|
|
|
|
|
|
|
|
Also adds sane keyboard navigation for mac.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\class Utils::TreeWidget
|
2023-05-22 14:38:47 +02:00
|
|
|
\inmodule QtCreator
|
2014-04-07 17:40:43 +02:00
|
|
|
|
|
|
|
|
\brief The TreeWidget adds setActivationMode to QTreeWidget
|
|
|
|
|
to allow for single click/double click behavior on
|
|
|
|
|
platforms where the default is different. Use with care.
|
|
|
|
|
|
|
|
|
|
Also adds sane keyboard navigation for mac.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\class Utils::ListView
|
2023-05-22 14:38:47 +02:00
|
|
|
\inmodule QtCreator
|
2014-04-07 17:40:43 +02:00
|
|
|
|
|
|
|
|
\brief The ListView adds setActivationMode to QListView
|
|
|
|
|
to allow for single click/double click behavior on
|
|
|
|
|
platforms where the default is different. Use with care.
|
|
|
|
|
|
|
|
|
|
Also adds sane keyboard navigation for mac.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\class Utils::ListWidget
|
2023-05-22 14:38:47 +02:00
|
|
|
\inmodule QtCreator
|
2014-04-07 17:40:43 +02:00
|
|
|
|
|
|
|
|
\brief The ListWidget adds setActivationMode to QListWidget
|
|
|
|
|
to allow for single click/double click behavior on
|
|
|
|
|
platforms where the default is different. Use with care.
|
|
|
|
|
|
|
|
|
|
Also adds sane keyboard navigation for mac.
|
|
|
|
|
*/
|