Sailfish OS
  • Info
  • User Experience
  • Cases
  • Community
  • Developers
  • Contact
  • Get Sailfish OS
Select Page
  • Info
  • User Experience
  • Cases
  • Community
  • Developers
  • Contact
  • Get Sailfish OS

API Documentation

Documentation for developing SailfishOS applications
  • API Documentation
  • Libsailfishapp
  • Sailfish Silica
    • Documentation
    • Icon Reference
  • Sailfish Components
    • Sailfish Accounts
    • Sailfish Bluetooth
    • Sailfish Contacts
    • Sailfish Crypto
    • Sailfish Gallery
    • Sailfish Media
    • Sailfish Pickers
    • Sailfish Secrets
    • Sailfish Share
    • Sailfish Telephony
    • Sailfish Webview
    • Amber Web Authorization
    • Amber MPRIS
  • Nemo QML Plugins
    • Configuration
    • Contacts
    • D-Bus
    • Keepalive
    • Notifications
    • Thumbnailer
  • Sailfish Middleware
    • MDM Framework
    • MDM Policy Framework
    • User Manager Daemon
  • API Documentation
  • Libsailfishapp
  • Sailfish Silica
    • Documentation
    • Icon Reference
  • Sailfish Components
    • Sailfish Accounts
    • Sailfish Bluetooth
    • Sailfish Contacts
    • Sailfish Crypto
    • Sailfish Gallery
    • Sailfish Media
    • Sailfish Pickers
    • Sailfish Secrets
    • Sailfish Share
    • Sailfish Telephony
    • Sailfish Webview
    • Amber Web Authorization
    • Amber MPRIS
  • Nemo QML Plugins
    • Configuration
    • Contacts
    • D-Bus
    • Keepalive
    • Notifications
    • Thumbnailer
  • Sailfish Middleware
    • MDM Framework
    • MDM Policy Framework
    • User Manager Daemon

Contents

  • Properties
  • Detailed Description

SlideshowView QML Type

A view for flicking through a series of items More...

Import Statement: import Sailfish.Silica 1.0
  • List of all members, including inherited members

Properties

  • itemHeight : real
  • itemWidth : real
  • orientation : enumeration

Detailed Description

The SlideshowView type provides a view for flicking through a series of items.

View navigation is cyclic, such that flicking forwards past the last item will continue on to the first item, and flicking backwards past the first item will move to the last item.

Here is a simple slideshow view:

 import QtQuick 2.2
 import Sailfish.Silica 1.0

 SlideshowView {
     id: view
     width: 480
     height: 200
     itemWidth: width / 2

     model: 5
     delegate: Rectangle {
         width: view.itemWidth
         height: view.height
         border.width: 1

         Text {
             anchors.centerIn: parent
             text: "item " + index
         }
     }
 }

Property Documentation

itemHeight : real

The height of each item in the view.


itemWidth : real

The width of each item in the view.


orientation : enumeration

This property holds the orientation of the slideshow view.

  • Qt.Horizontal - Horizontally scrollable carousel
  • Qt.Vertical - Vertically scrollable carousel

  • Legal
  • Contact Us
  • Jolla Mobile Ltd © 2025

  • Facebook
  • Twitter
  • Mastodon
  • YouTube
  • LinkedIn