mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
Very early KDE 6 release.
This commit is contained in:
parent
7cc4ccabbc
commit
686046d4f7
6272 changed files with 140920 additions and 529657 deletions
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
SPDX-FileCopyrightText: 2022 ivan (@ratijas) tkachenko <me@ratijas.tk>
|
||||
|
||||
SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
import QtQml 2.15
|
||||
|
||||
QtObject {
|
||||
/**
|
||||
* Whether the effect is currently active, and can be deactivated.
|
||||
*/
|
||||
property bool active
|
||||
|
||||
property string titleActive
|
||||
property string titleInactive
|
||||
|
||||
property string descriptionActive
|
||||
property string descriptionInactive
|
||||
|
||||
readonly property string title: active ? titleActive : titleInactive
|
||||
readonly property string description: active ? descriptionActive : descriptionInactive
|
||||
|
||||
// virtual
|
||||
function toggle() {}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue