Kirigami-addons

SettingAction.qml
1// SPDX-FileCopyrightText: 2021 Felipe Kinoshita <kinofhek@gmail.com>
2// SPDX-License-Identifier: LGPL-2.0-or-later
3
4import QtQuick 2.15
5import QtQuick.Controls 2.15 as QQC2
6import org.kde.kirigami 2.20 as Kirigami
7
8/**
9 * @brief SettingAction defines a settings page, and is typically used by a CategorizedSettings object.
10 * @inherit org::kde::kirigami::PagePoolAction
11 * @deprecated Since 1.3.0, use ConfigurationModule instead.
12 */
13Kirigami.PagePoolAction {
14 /**
15 * @brief The name of the action for when it needs to be referenced.
16 *
17 * Primary use case if for setting a default page in CategorizedSettings.
18 */
19 required property string actionName
20
21 pageStack: _stack
22 pagePool: _pool
23 basePage: _stack.initialPage
24
25 checkable: false
26}
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Jul 26 2024 11:54:39 by doxygen 1.11.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.