mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2025-09-05 10:12:46 +00:00
Added comments and general cleanup on qml files
This commit is contained in:
parent
92a18c4fa5
commit
1eb6a8fb5d
17 changed files with 101 additions and 47 deletions
|
@ -2,6 +2,9 @@ import QtQuick 2.6
|
|||
import Sailfish.Silica 1.0
|
||||
import nl.netsoj.chris.Jellyfin 1.0
|
||||
|
||||
/**
|
||||
* Page to indicate that the application is connecting to a server.
|
||||
*/
|
||||
Page {
|
||||
property string serverName
|
||||
property string serverAddress
|
||||
|
|
|
@ -2,6 +2,11 @@ import QtQuick 2.6
|
|||
import Sailfish.Silica 1.0
|
||||
import nl.netsoj.chris.Jellyfin 1.0
|
||||
|
||||
/**
|
||||
* Dialog showed when the user has to connect to a Jellyfin server.
|
||||
*
|
||||
* This dialog allows manual address entry or use one of the addresses discovered via UDP broadcasts.
|
||||
*/
|
||||
Dialog {
|
||||
id: dialogRoot
|
||||
allowedOrientations: Orientation.All
|
||||
|
|
|
@ -4,6 +4,11 @@ import nl.netsoj.chris.Jellyfin 1.0
|
|||
|
||||
import "../../components"
|
||||
|
||||
/**
|
||||
* Page where the user can login on their server. Is displayed after the AddServerPage successfully connected
|
||||
* to a Jellyfin server. This page also displays a login message and, if applicable, a list of public users.
|
||||
*/
|
||||
|
||||
Dialog {
|
||||
property string loginMessage
|
||||
property Page firstPage
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue