32 lines
583 B
QML
32 lines
583 B
QML
/*
|
|
SPDX-FileCopyrightText: 2014 Sebastian Kügler <sebas@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick 2.1
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
|
import org.kde.plasma.extras 2.0 as PlasmaExtras
|
|
import org.kde.kquickcontrolsaddons 2.0 as KQuickControlsAddons
|
|
|
|
// IconTab
|
|
|
|
Item {
|
|
|
|
|
|
property int cheight: 48
|
|
property int cwidth: themePage.width / 1.2
|
|
|
|
id: themePage
|
|
anchors {
|
|
margins: units.largeSpacing
|
|
}
|
|
|
|
FontTest {
|
|
anchors.fill: parent
|
|
}
|
|
|
|
}
|