Warning, /plasma/discover/discover/qml/CarouselAbstractMaximizedView.qml is written in an unsupported language. File is not indexed.

0001 /*
0002  *   SPDX-FileCopyrightText: 2023 ivan tkachenko <me@ratijas.tk>
0003  *
0004  *   SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 import QtQml
0008 import QtQuick
0009 import org.kde.discover as Discover
0010 
0011 QtObject {
0012     required property int currentIndex
0013     required property Discover.ScreenshotsModel model
0014     required property Window transientParent
0015     required property int mode
0016 
0017     function close(animated: bool) {}
0018 
0019     property bool toggleModeAvailable
0020     signal toggleMode()
0021 
0022     // Popup and Window differ in how they set background graphics
0023     readonly property color backgroundColor: "#262828"
0024 }