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

UnifiedSearchResultFetchMoreTrigger.qml « tray « gui « src - github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65600e33dc52dc3c0cf25c931df94d706b2e318c (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
import QtQml 2.15
import QtQuick 2.15
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.2
import Style 1.0

ColumnLayout {
    id: unifiedSearchResultItemFetchMore

    property bool isFetchMoreInProgress: false
    property bool isWithinViewPort: false

    property int fontSize: Style.unifiedSearchResultTitleFontSize

    property string textColor: Style.ncSecondaryTextColor

    Accessible.role: Accessible.ListItem
    Accessible.name: unifiedSearchResultItemFetchMoreText.text
    Accessible.onPressAction: unifiedSearchResultMouseArea.clicked()

    Label {
        id: unifiedSearchResultItemFetchMoreText

        Layout.fillWidth: true
        Layout.fillHeight: true
        Layout.leftMargin: Style.trayHorizontalMargin
        Layout.rightMargin: Style.trayHorizontalMargin

        horizontalAlignment: Text.AlignHCenter
        verticalAlignment: Text.AlignVCenter
        text: qsTr("Load more results")
        wrapMode: Text.Wrap
        font.pixelSize: unifiedSearchResultItemFetchMore.fontSize
        color: unifiedSearchResultItemFetchMore.textColor
        visible: !unifiedSearchResultItemFetchMore.isFetchMoreInProgress
    }

    BusyIndicator {
        id: unifiedSearchResultItemFetchMoreIconInProgress

        Layout.preferredWidth: parent.height * 0.70
        Layout.preferredHeight: parent.height * 0.70
        Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter

        running: visible
        visible: unifiedSearchResultItemFetchMore.isFetchMoreInProgress && unifiedSearchResultItemFetchMore.isWithinViewPort
    }
}