MauiKit Controls
GalleryRollTemplate.qml
9 * @brief A template control to display images in a carousel form. This element is use with the GalleryRollItem to display the images, so consider using that control instead of this one.
11 * This control inherits all properties from the MauiKit ShadowedRectangle control. Thus, the corners radius can be modified individually, and a drop shadow can be added, using the `corners` and `shadow` properties respectively.
13 * The transition of the images can be set as vertical or horizontal using the `orientation` property, and the transition time is picked randomly.
16 * @note If not images are set, then the area is filled with a solid color block. This color can be changed using the `color` property.
47 * @brief A callback function to manage what image is positioned. This callback function is called for each image source set in the model `images`, so the final source can be modified. This function should return a - new or modified - image source URL.
49 * As an example, if the `images` model looks like: `["page1", "page2", "page3"]` - which are not file URLs, this callback function can be use to map each individual source to an actual file URL.
54 * return mapSourceToImageFile(source) //here the "page1" could be mapped to "file:///some/path/to/image1.jpg" and return this new source to be use.
72 * @brief The fill mode of the images. To see possible values refer to the QQC2 Image documentation form Qt.
85 * @note If the image has a big resolution it will take longer to load, so make it faster set this property to a lower value.
87 * By default this is set to `-1`, which means that the image will be painted using the full image resolution.
94 * @note If the image has a big resolution it will take longer to load, so make it faster set this property to a lower value.
96 * By default this is set to `-1`, which means that the image will be painted using the full image resolution.
enabled
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Nov 8 2024 11:48:43 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Nov 8 2024 11:48:43 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.