Warning, /frameworks/kirigami/src/controls/ApplicationHeader.qml is written in an unsupported language. File is not indexed.

0001 /*
0002  *  SPDX-FileCopyrightText: 2016 Marco Martin <mart@kde.org>
0003  *
0004  *  SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 import "templates" as T
0008 
0009 //TODO KF6: remove
0010 /**
0011  * @brief An item that can be used as a title for the application.
0012  *
0013  * Scrolling the main page will make it taller or shorter (through the point of going away)
0014  * It's a behavior similar to the typical mobile web browser addressbar
0015  * the minimum, preferred and maximum heights of the item can be controlled with
0016  * * ``minimumHeight``: Default is 0, i.e. hidden
0017  * * ``preferredHeight``: Default is Kirigami.Units.gridUnit * 1.6
0018  * * ``maximumHeight``: Default is Kirigami.Units.gridUnit * 3
0019  *
0020  * To achieve a titlebar that stays completely fixed just set the 3 sizes as the same
0021  *
0022  * @deprecated This will be removed in KF6.
0023  * @inherit kirigami::templates::ApplicationHeader
0024  */
0025 T.ApplicationHeader {
0026     id: header
0027 }