Plasma-framework

Pane.qml
1/*
2 * SPDX-FileCopyrightText: 2020 Noah Davis <noahadvs@gmail.com>
3 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
4 */
5
6import QtQuick.Templates as T
7
8T.Pane {
9 id: control
10
11 implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
12 contentWidth + leftPadding + rightPadding)
13 implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
14 contentHeight + topPadding + bottomPadding)
15
16 //TODO: Add background?
17}
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 17 2024 11:54:11 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.