Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AccountDetails.qml « Account « qml « resources - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 265842e2b4ed07ea3a1ee843bdb281a8a3b055e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright (c) 2018 Ultimaker B.V.
// Cura is released under the terms of the LGPLv3 or higher.

import QtQuick 2.10
import QtQuick.Controls 2.3

import UM 1.4 as UM
import Cura 1.1 as Cura

Column
{
    property var profile: null
    property var loggedIn: false
    property var profileImage: ""

    padding: UM.Theme.getSize("wide_margin").height
    spacing: UM.Theme.getSize("wide_margin").height

    Loader
    {
        id: accountOperations
        anchors.horizontalCenter: parent.horizontalCenter
        sourceComponent: loggedIn ? userOperations : generalOperations
    }

    Component
    {
        id: userOperations
        UserOperations { }
    }

    Component
    {
        id: generalOperations
        GeneralOperations { }
    }
}