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

ActivityActionButton.qml « tray « gui « src - github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a6b0d70da297bd891f5eb0855dc2eb45cae72c30 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import QtQuick 2.15
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.15
import Style 1.0
import com.nextcloud.desktopclient 1.0

Item {
    id: root

    property string text: ""
    property string toolTipText: ""

    property bool primaryButton: false

    property string imageSource: ""
    property string imageSourceHover: ""

    property color textColor: Style.ncTextColor
    property color textColorHovered: Style.ncSecondaryTextColor

    signal clicked()

    Loader {
        active: !root.primaryButton

        anchors.fill: parent

        sourceComponent: CustomTextButton {
             anchors.fill: parent
             text: root.text
             toolTipText: root.toolTipText

             textColor: root.textColor
             textColorHovered: root.textColorHovered

             onClicked: root.clicked()
        }
    }

    Loader {
        active: root.primaryButton

        anchors.fill: parent

        sourceComponent: CustomButton {
            anchors.fill: parent
            anchors.topMargin: Style.roundedButtonBackgroundVerticalMargins
            anchors.bottomMargin: Style.roundedButtonBackgroundVerticalMargins

            text: root.text
            toolTipText: root.toolTipText

            textColor: root.textColor
            textColorHovered: root.textColorHovered

            bold: root.primaryButton

            imageSource: root.imageSource
            imageSourceHover: root.imageSourceHover

            bgColor: UserModel.currentUser.headerColor

            onClicked: root.clicked()
        }
    }
}