RinUI 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- RinUI/__init__.py +4 -4
- RinUI/assets/fonts/FluentSystemIcons-Index.js +5255 -5255
- RinUI/components/Base.qml +78 -78
- RinUI/components/BasicInput/Button.qml +146 -146
- RinUI/components/BasicInput/CheckBox.qml +98 -98
- RinUI/components/BasicInput/ComboBox.qml +159 -159
- RinUI/components/BasicInput/DropDownButton.qml +20 -20
- RinUI/components/BasicInput/Hyperlink.qml +17 -17
- RinUI/components/BasicInput/PillButton.qml +10 -10
- RinUI/components/BasicInput/RadioButton.qml +94 -94
- RinUI/components/BasicInput/RoundButton.qml +26 -26
- RinUI/components/BasicInput/Slider.qml +212 -212
- RinUI/components/BasicInput/Switch.qml +101 -101
- RinUI/components/BasicInput/ToggleButton.qml +10 -10
- RinUI/components/BasicInput/ToolButton.qml +30 -30
- RinUI/components/ContextMenu.qml +183 -183
- RinUI/components/DateAndTime/DatePicker.qml +142 -140
- RinUI/components/DateAndTime/PickerView.qml +223 -223
- RinUI/components/DateAndTime/TimePicker.qml +114 -114
- RinUI/components/DialogsAndFlyouts/Dialog.qml +106 -106
- RinUI/components/DialogsAndFlyouts/DialogButtonBox.qml +47 -47
- RinUI/components/DialogsAndFlyouts/Flyout.qml +87 -87
- RinUI/components/DialogsAndFlyouts/Popup.qml +110 -106
- RinUI/components/FocusIndicator.qml +33 -33
- RinUI/components/IconWidget.qml +52 -52
- RinUI/components/Indicator.qml +89 -89
- RinUI/components/Layout/Expander.qml +159 -159
- RinUI/components/Layout/SettingExpander.qml +66 -66
- RinUI/components/Layout/SettingItem.qml +70 -70
- RinUI/components/ListAndCollections/Clip.qml +21 -21
- RinUI/components/ListAndCollections/Frame.qml +43 -43
- RinUI/components/ListAndCollections/ListView.qml +104 -104
- RinUI/components/ListAndCollections/ListViewDelegate.qml +82 -82
- RinUI/components/ListAndCollections/SettingCard.qml +72 -72
- RinUI/components/ListAndCollections/TableView.qml +81 -81
- RinUI/components/ListAndCollections/TableViewDelegate.qml +88 -88
- RinUI/components/Media/Avatar.qml +82 -82
- RinUI/components/MenusAndToolbars/Menu.qml +150 -150
- RinUI/components/MenusAndToolbars/MenuBar.qml +42 -42
- RinUI/components/MenusAndToolbars/MenuItem.qml +131 -131
- RinUI/components/MenusAndToolbars/MenuItemGroup.qml +43 -43
- RinUI/components/MenusAndToolbars/MenuSeparator.qml +13 -13
- RinUI/components/MenusAndToolbars/TextInputMenu.qml +37 -37
- RinUI/components/MenusAndToolbars/ToolSeparator.qml +16 -16
- RinUI/components/Navigation/ErrorPage.qml +48 -48
- RinUI/components/Navigation/NavigationBar.qml +179 -179
- RinUI/components/Navigation/NavigationItem.qml +193 -193
- RinUI/components/Navigation/NavigationSubItem.qml +103 -103
- RinUI/components/Navigation/NavigationView.qml +228 -227
- RinUI/components/Navigation/Segmented.qml +16 -16
- RinUI/components/Navigation/SegmentedItem.qml +107 -107
- RinUI/components/Navigation/SelectorBar.qml +12 -12
- RinUI/components/Navigation/SelectorBarItem.qml +88 -88
- RinUI/components/ScrollBar.qml +204 -204
- RinUI/components/ScrollView.qml +12 -12
- RinUI/components/Shadow.qml +47 -47
- RinUI/components/StatusAndInfo/InfoBadge.qml +77 -77
- RinUI/components/StatusAndInfo/InfoBar.qml +256 -251
- RinUI/components/StatusAndInfo/ProgressBar.qml +126 -126
- RinUI/components/StatusAndInfo/ProgressRing.qml +149 -0
- RinUI/components/StatusAndInfo/Toast.qml +236 -236
- RinUI/components/StatusAndInfo/ToolTip.qml +93 -93
- RinUI/components/Text/SpinBox.qml +150 -133
- RinUI/components/Text/Text.qml +44 -44
- RinUI/components/Text/TextArea.qml +117 -117
- RinUI/components/Text/TextField.qml +113 -113
- RinUI/components/Text/TextInput.qml +47 -47
- RinUI/components/qmldir +80 -80
- RinUI/core/__init__.py +4 -4
- RinUI/core/config.py +129 -129
- RinUI/core/launcher.py +129 -129
- RinUI/core/theme.py +339 -339
- RinUI/core/translator.py +25 -25
- RinUI/hooks/__init__.py +3 -3
- RinUI/hooks/hook-RinUI.py +3 -3
- RinUI/qmldir +108 -104
- RinUI/themes/Appearance.qml +36 -0
- RinUI/themes/Colors.qml +36 -0
- RinUI/themes/dark.qml +145 -145
- RinUI/themes/light.qml +145 -145
- RinUI/themes/qmldir +9 -6
- RinUI/themes/theme.qml +151 -149
- RinUI/themes/utils.qml +37 -37
- RinUI/utils/Animation.qml +12 -12
- RinUI/utils/FloatLayer.qml +132 -123
- RinUI/utils/FontIconLoader.qml +13 -13
- RinUI/utils/Position.qml +19 -19
- RinUI/utils/Severity.qml +13 -13
- RinUI/utils/Typography.qml +17 -17
- RinUI/utils/qmldir +4 -4
- RinUI/windows/CtrlBtn.qml +118 -118
- RinUI/windows/FluentPage.qml +92 -92
- RinUI/windows/FluentWindow.qml +31 -30
- RinUI/windows/FluentWindowBase.qml +158 -158
- RinUI/windows/TitleBar.qml +135 -135
- RinUI/windows/qmldir +7 -7
- RinUI/windows/window/ApplicationWindow.qml +8 -8
- RinUI/windows/window/Window.qml +118 -118
- {rinui-0.1.0.data → rinui-0.1.1.data}/data/LICENSE +21 -21
- {rinui-0.1.0.data → rinui-0.1.1.data}/data/README.md +100 -100
- {rinui-0.1.0.dist-info → rinui-0.1.1.dist-info}/METADATA +116 -115
- rinui-0.1.1.dist-info/RECORD +112 -0
- {rinui-0.1.0.dist-info → rinui-0.1.1.dist-info}/WHEEL +1 -1
- {rinui-0.1.0.dist-info → rinui-0.1.1.dist-info/licenses}/LICENSE +21 -21
- RinUI/__pycache__/__init__.cpython-38.pyc +0 -0
- RinUI/config/rin_ui.json +0 -8
- RinUI/core/__pycache__/__init__.cpython-38.pyc +0 -0
- RinUI/core/__pycache__/config.cpython-38.pyc +0 -0
- RinUI/core/__pycache__/launcher.cpython-38.pyc +0 -0
- RinUI/core/__pycache__/theme.cpython-38.pyc +0 -0
- RinUI/core/__pycache__/translator.cpython-38.pyc +0 -0
- rinui-0.1.0.dist-info/RECORD +0 -116
- {rinui-0.1.0.dist-info → rinui-0.1.1.dist-info}/entry_points.txt +0 -0
- {rinui-0.1.0.dist-info → rinui-0.1.1.dist-info}/top_level.txt +0 -0
@@ -1,106 +1,106 @@
|
|
1
|
-
import QtQuick 2.15
|
2
|
-
import QtQuick.Controls 2.15
|
3
|
-
import QtQuick.Layouts 2.15
|
4
|
-
import "../../themes"
|
5
|
-
import "../../components"
|
6
|
-
|
7
|
-
|
8
|
-
Dialog {
|
9
|
-
id: root
|
10
|
-
|
11
|
-
property bool titleBarVisible: false
|
12
|
-
|
13
|
-
anchors.centerIn: Overlay.overlay // Center in the overlay
|
14
|
-
closePolicy: Popup.NoAutoClose // 更符合fds规范
|
15
|
-
|
16
|
-
padding: 24
|
17
|
-
topPadding: 24
|
18
|
-
bottomPadding: 24
|
19
|
-
implicitWidth: Math.max(Utils.dialogMinimumWidth, Math.min(implicitContentWidth + 48, Utils.dialogMaximumWidth))
|
20
|
-
|
21
|
-
contentItem: ColumnLayout {
|
22
|
-
spacing: 12
|
23
|
-
Text {
|
24
|
-
Layout.fillWidth: true
|
25
|
-
typography: Typography.Subtitle
|
26
|
-
text: root.title
|
27
|
-
}
|
28
|
-
}
|
29
|
-
|
30
|
-
|
31
|
-
header: Item {}
|
32
|
-
|
33
|
-
// 定制footer
|
34
|
-
footer: DialogButtonBox {
|
35
|
-
id: buttonBox
|
36
|
-
standardButtons: root.standardButtons
|
37
|
-
}
|
38
|
-
|
39
|
-
background: Rectangle {
|
40
|
-
id: background
|
41
|
-
anchors.fill: parent
|
42
|
-
color: Theme.currentTheme.colors.backgroundAcrylicColor
|
43
|
-
border.color: Theme.currentTheme.colors.windowBorderColor
|
44
|
-
border.width: 1
|
45
|
-
radius: Theme.currentTheme.appearance.windowRadius
|
46
|
-
|
47
|
-
Behavior on color {
|
48
|
-
ColorAnimation {
|
49
|
-
duration: Utils.backdropEnabled ? 0 : 150
|
50
|
-
}
|
51
|
-
}
|
52
|
-
|
53
|
-
layer.enabled: true
|
54
|
-
layer.effect: Shadow {
|
55
|
-
style: "dialog"
|
56
|
-
source: background
|
57
|
-
}
|
58
|
-
}
|
59
|
-
|
60
|
-
Overlay.modal: Rectangle {
|
61
|
-
color: Theme.currentTheme.colors.backgroundSmokeColor
|
62
|
-
}
|
63
|
-
|
64
|
-
// 动画 / Animation //
|
65
|
-
enter: Transition {
|
66
|
-
ParallelAnimation {
|
67
|
-
NumberAnimation {
|
68
|
-
target: root
|
69
|
-
property: "opacity"
|
70
|
-
from: 0
|
71
|
-
to: 1
|
72
|
-
duration: Utils.appearanceSpeed
|
73
|
-
easing.type: Easing.InOutQuart
|
74
|
-
}
|
75
|
-
NumberAnimation {
|
76
|
-
target: root
|
77
|
-
property: "scale"
|
78
|
-
from: 1.1
|
79
|
-
to: 1
|
80
|
-
duration: Utils.animationSpeedMiddle
|
81
|
-
easing.type: Easing.OutQuint
|
82
|
-
}
|
83
|
-
}
|
84
|
-
}
|
85
|
-
|
86
|
-
exit: Transition {
|
87
|
-
ParallelAnimation {
|
88
|
-
NumberAnimation {
|
89
|
-
target: root
|
90
|
-
property: "opacity"
|
91
|
-
from: 1
|
92
|
-
to: 0
|
93
|
-
duration: 100
|
94
|
-
easing.type: Easing.InOutQuart
|
95
|
-
}
|
96
|
-
NumberAnimation {
|
97
|
-
target: root
|
98
|
-
property: "scale"
|
99
|
-
from: 1
|
100
|
-
to: 1.1
|
101
|
-
duration: Utils.animationSpeedMiddle
|
102
|
-
easing.type: Easing.OutQuint
|
103
|
-
}
|
104
|
-
}
|
105
|
-
}
|
106
|
-
}
|
1
|
+
import QtQuick 2.15
|
2
|
+
import QtQuick.Controls 2.15
|
3
|
+
import QtQuick.Layouts 2.15
|
4
|
+
import "../../themes"
|
5
|
+
import "../../components"
|
6
|
+
|
7
|
+
|
8
|
+
Dialog {
|
9
|
+
id: root
|
10
|
+
|
11
|
+
property bool titleBarVisible: false
|
12
|
+
|
13
|
+
anchors.centerIn: Overlay.overlay // Center in the overlay
|
14
|
+
closePolicy: Popup.NoAutoClose // 更符合fds规范
|
15
|
+
|
16
|
+
padding: 24
|
17
|
+
topPadding: 24
|
18
|
+
bottomPadding: 24
|
19
|
+
implicitWidth: Math.max(Utils.dialogMinimumWidth, Math.min(implicitContentWidth + 48, Utils.dialogMaximumWidth))
|
20
|
+
|
21
|
+
contentItem: ColumnLayout {
|
22
|
+
spacing: 12
|
23
|
+
Text {
|
24
|
+
Layout.fillWidth: true
|
25
|
+
typography: Typography.Subtitle
|
26
|
+
text: root.title
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
|
31
|
+
header: Item {}
|
32
|
+
|
33
|
+
// 定制footer
|
34
|
+
footer: DialogButtonBox {
|
35
|
+
id: buttonBox
|
36
|
+
standardButtons: root.standardButtons
|
37
|
+
}
|
38
|
+
|
39
|
+
background: Rectangle {
|
40
|
+
id: background
|
41
|
+
anchors.fill: parent
|
42
|
+
color: Theme.currentTheme.colors.backgroundAcrylicColor
|
43
|
+
border.color: Theme.currentTheme.colors.windowBorderColor
|
44
|
+
border.width: 1
|
45
|
+
radius: Theme.currentTheme.appearance.windowRadius
|
46
|
+
|
47
|
+
Behavior on color {
|
48
|
+
ColorAnimation {
|
49
|
+
duration: Utils.backdropEnabled ? 0 : 150
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
layer.enabled: true
|
54
|
+
layer.effect: Shadow {
|
55
|
+
style: "dialog"
|
56
|
+
source: background
|
57
|
+
}
|
58
|
+
}
|
59
|
+
|
60
|
+
Overlay.modal: Rectangle {
|
61
|
+
color: Theme.currentTheme.colors.backgroundSmokeColor
|
62
|
+
}
|
63
|
+
|
64
|
+
// 动画 / Animation //
|
65
|
+
enter: Transition {
|
66
|
+
ParallelAnimation {
|
67
|
+
NumberAnimation {
|
68
|
+
target: root
|
69
|
+
property: "opacity"
|
70
|
+
from: 0
|
71
|
+
to: 1
|
72
|
+
duration: Utils.appearanceSpeed
|
73
|
+
easing.type: Easing.InOutQuart
|
74
|
+
}
|
75
|
+
NumberAnimation {
|
76
|
+
target: root
|
77
|
+
property: "scale"
|
78
|
+
from: 1.1
|
79
|
+
to: 1
|
80
|
+
duration: Utils.animationSpeedMiddle
|
81
|
+
easing.type: Easing.OutQuint
|
82
|
+
}
|
83
|
+
}
|
84
|
+
}
|
85
|
+
|
86
|
+
exit: Transition {
|
87
|
+
ParallelAnimation {
|
88
|
+
NumberAnimation {
|
89
|
+
target: root
|
90
|
+
property: "opacity"
|
91
|
+
from: 1
|
92
|
+
to: 0
|
93
|
+
duration: 100
|
94
|
+
easing.type: Easing.InOutQuart
|
95
|
+
}
|
96
|
+
NumberAnimation {
|
97
|
+
target: root
|
98
|
+
property: "scale"
|
99
|
+
from: 1
|
100
|
+
to: 1.1
|
101
|
+
duration: Utils.animationSpeedMiddle
|
102
|
+
easing.type: Easing.OutQuint
|
103
|
+
}
|
104
|
+
}
|
105
|
+
}
|
106
|
+
}
|
@@ -1,47 +1,47 @@
|
|
1
|
-
import QtQuick 2.15
|
2
|
-
import QtQuick.Controls 2.15
|
3
|
-
import QtQuick.Layouts 2.15
|
4
|
-
import "../../components"
|
5
|
-
|
6
|
-
|
7
|
-
DialogButtonBox {
|
8
|
-
id: buttonBox
|
9
|
-
|
10
|
-
implicitWidth: 320
|
11
|
-
|
12
|
-
background: Rectangle {
|
13
|
-
anchors.fill: parent
|
14
|
-
color: Theme.currentTheme.colors.backgroundColor
|
15
|
-
border.color: Theme.currentTheme.colors.windowBorderColor
|
16
|
-
radius: Theme.currentTheme.appearance.windowRadius
|
17
|
-
|
18
|
-
Rectangle {
|
19
|
-
anchors.top: parent.top
|
20
|
-
anchors.left: parent.left
|
21
|
-
anchors.right: parent.right
|
22
|
-
anchors.margins: 1
|
23
|
-
height: parent.radius
|
24
|
-
color: parent.color
|
25
|
-
}
|
26
|
-
}
|
27
|
-
|
28
|
-
padding: 24
|
29
|
-
spacing: 8
|
30
|
-
|
31
|
-
alignment: undefined
|
32
|
-
|
33
|
-
contentItem: RowLayout {
|
34
|
-
spacing: buttonBox.spacing
|
35
|
-
|
36
|
-
Repeater {
|
37
|
-
model: buttonBox.contentModel
|
38
|
-
}
|
39
|
-
}
|
40
|
-
|
41
|
-
delegate: Button {
|
42
|
-
Layout.alignment: Qt.AlignRight
|
43
|
-
Layout.preferredWidth: buttonBox.availableWidth / 2
|
44
|
-
Layout.fillWidth: !(buttonBox.count === 1)
|
45
|
-
highlighted: DialogButtonBox.buttonRole === DialogButtonBox.AcceptRole // 高亮
|
46
|
-
}
|
47
|
-
}
|
1
|
+
import QtQuick 2.15
|
2
|
+
import QtQuick.Controls 2.15
|
3
|
+
import QtQuick.Layouts 2.15
|
4
|
+
import "../../components"
|
5
|
+
|
6
|
+
|
7
|
+
DialogButtonBox {
|
8
|
+
id: buttonBox
|
9
|
+
|
10
|
+
implicitWidth: 320
|
11
|
+
|
12
|
+
background: Rectangle {
|
13
|
+
anchors.fill: parent
|
14
|
+
color: Theme.currentTheme.colors.backgroundColor
|
15
|
+
border.color: Theme.currentTheme.colors.windowBorderColor
|
16
|
+
radius: Theme.currentTheme.appearance.windowRadius
|
17
|
+
|
18
|
+
Rectangle {
|
19
|
+
anchors.top: parent.top
|
20
|
+
anchors.left: parent.left
|
21
|
+
anchors.right: parent.right
|
22
|
+
anchors.margins: 1
|
23
|
+
height: parent.radius
|
24
|
+
color: parent.color
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
padding: 24
|
29
|
+
spacing: 8
|
30
|
+
|
31
|
+
alignment: undefined
|
32
|
+
|
33
|
+
contentItem: RowLayout {
|
34
|
+
spacing: buttonBox.spacing
|
35
|
+
|
36
|
+
Repeater {
|
37
|
+
model: buttonBox.contentModel
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
delegate: Button {
|
42
|
+
Layout.alignment: Qt.AlignRight
|
43
|
+
Layout.preferredWidth: buttonBox.availableWidth / 2
|
44
|
+
Layout.fillWidth: !(buttonBox.count === 1)
|
45
|
+
highlighted: DialogButtonBox.buttonRole === DialogButtonBox.AcceptRole // 高亮
|
46
|
+
}
|
47
|
+
}
|
@@ -1,87 +1,87 @@
|
|
1
|
-
import QtQuick 2.15
|
2
|
-
import QtQuick.Controls.Basic 2.15
|
3
|
-
import QtQuick.Layouts 2.15
|
4
|
-
import Qt5Compat.GraphicalEffects
|
5
|
-
import "../../themes"
|
6
|
-
import "../../components"
|
7
|
-
|
8
|
-
Popup {
|
9
|
-
id: flyout
|
10
|
-
property alias text: flyoutText.text // 弹出文本内容
|
11
|
-
property alias buttonBox: buttonLayout.data // 按钮列表
|
12
|
-
default property alias content: customContent.data // 弹出内容
|
13
|
-
|
14
|
-
position: Position.Top
|
15
|
-
|
16
|
-
padding: 16
|
17
|
-
|
18
|
-
contentItem: ColumnLayout {
|
19
|
-
spacing: 0
|
20
|
-
|
21
|
-
ColumnLayout {
|
22
|
-
id: customContent
|
23
|
-
spacing: 8
|
24
|
-
Layout.fillWidth: true
|
25
|
-
|
26
|
-
Text {
|
27
|
-
id: flyoutText
|
28
|
-
Layout.fillWidth: true
|
29
|
-
typography: Typography.Body
|
30
|
-
visible: text.length > 0
|
31
|
-
}
|
32
|
-
}
|
33
|
-
|
34
|
-
Item {
|
35
|
-
height: 16
|
36
|
-
visible: buttonLayout.children.length > 0
|
37
|
-
}
|
38
|
-
|
39
|
-
RowLayout {
|
40
|
-
Layout.fillWidth: true
|
41
|
-
id: buttonLayout
|
42
|
-
spacing: 8
|
43
|
-
}
|
44
|
-
}
|
45
|
-
|
46
|
-
// 动画 / Animation //
|
47
|
-
enter: Transition {
|
48
|
-
ParallelAnimation {
|
49
|
-
NumberAnimation {
|
50
|
-
target: flyout
|
51
|
-
property: "opacity"
|
52
|
-
from: 0
|
53
|
-
to: 1
|
54
|
-
duration: Utils.appearanceSpeed
|
55
|
-
easing.type: Easing.OutQuint
|
56
|
-
}
|
57
|
-
NumberAnimation {
|
58
|
-
target: flyout
|
59
|
-
property: "y"
|
60
|
-
from: posY + (position === Position.Top ? 15 : position === Position.Bottom ? -15 : 0)
|
61
|
-
to: posY
|
62
|
-
duration: Utils.animationSpeedMiddle * 1.25
|
63
|
-
easing.type: Easing.OutQuint
|
64
|
-
}
|
65
|
-
NumberAnimation {
|
66
|
-
target: flyout
|
67
|
-
property: "x"
|
68
|
-
from: posX + (position === Position.Left ? 15 : position === Position.Right ? -15 : 0)
|
69
|
-
to: posX
|
70
|
-
duration: Utils.animationSpeedMiddle * 1.25
|
71
|
-
easing.type: Easing.OutQuint
|
72
|
-
}
|
73
|
-
}
|
74
|
-
}
|
75
|
-
exit: Transition {
|
76
|
-
ParallelAnimation {
|
77
|
-
NumberAnimation {
|
78
|
-
target: flyout
|
79
|
-
property: "opacity"
|
80
|
-
from: 1
|
81
|
-
to: 0
|
82
|
-
duration: Utils.animationSpeed
|
83
|
-
easing.type: Easing.OutQuint
|
84
|
-
}
|
85
|
-
}
|
86
|
-
}
|
87
|
-
}
|
1
|
+
import QtQuick 2.15
|
2
|
+
import QtQuick.Controls.Basic 2.15
|
3
|
+
import QtQuick.Layouts 2.15
|
4
|
+
import Qt5Compat.GraphicalEffects
|
5
|
+
import "../../themes"
|
6
|
+
import "../../components"
|
7
|
+
|
8
|
+
Popup {
|
9
|
+
id: flyout
|
10
|
+
property alias text: flyoutText.text // 弹出文本内容
|
11
|
+
property alias buttonBox: buttonLayout.data // 按钮列表
|
12
|
+
default property alias content: customContent.data // 弹出内容
|
13
|
+
|
14
|
+
position: Position.Top
|
15
|
+
|
16
|
+
padding: 16
|
17
|
+
|
18
|
+
contentItem: ColumnLayout {
|
19
|
+
spacing: 0
|
20
|
+
|
21
|
+
ColumnLayout {
|
22
|
+
id: customContent
|
23
|
+
spacing: 8
|
24
|
+
Layout.fillWidth: true
|
25
|
+
|
26
|
+
Text {
|
27
|
+
id: flyoutText
|
28
|
+
Layout.fillWidth: true
|
29
|
+
typography: Typography.Body
|
30
|
+
visible: text.length > 0
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
Item {
|
35
|
+
height: 16
|
36
|
+
visible: buttonLayout.children.length > 0
|
37
|
+
}
|
38
|
+
|
39
|
+
RowLayout {
|
40
|
+
Layout.fillWidth: true
|
41
|
+
id: buttonLayout
|
42
|
+
spacing: 8
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
// 动画 / Animation //
|
47
|
+
enter: Transition {
|
48
|
+
ParallelAnimation {
|
49
|
+
NumberAnimation {
|
50
|
+
target: flyout
|
51
|
+
property: "opacity"
|
52
|
+
from: 0
|
53
|
+
to: 1
|
54
|
+
duration: Utils.appearanceSpeed
|
55
|
+
easing.type: Easing.OutQuint
|
56
|
+
}
|
57
|
+
NumberAnimation {
|
58
|
+
target: flyout
|
59
|
+
property: "y"
|
60
|
+
from: posY + (position === Position.Top ? 15 : position === Position.Bottom ? -15 : 0)
|
61
|
+
to: posY
|
62
|
+
duration: Utils.animationSpeedMiddle * 1.25
|
63
|
+
easing.type: Easing.OutQuint
|
64
|
+
}
|
65
|
+
NumberAnimation {
|
66
|
+
target: flyout
|
67
|
+
property: "x"
|
68
|
+
from: posX + (position === Position.Left ? 15 : position === Position.Right ? -15 : 0)
|
69
|
+
to: posX
|
70
|
+
duration: Utils.animationSpeedMiddle * 1.25
|
71
|
+
easing.type: Easing.OutQuint
|
72
|
+
}
|
73
|
+
}
|
74
|
+
}
|
75
|
+
exit: Transition {
|
76
|
+
ParallelAnimation {
|
77
|
+
NumberAnimation {
|
78
|
+
target: flyout
|
79
|
+
property: "opacity"
|
80
|
+
from: 1
|
81
|
+
to: 0
|
82
|
+
duration: Utils.animationSpeed
|
83
|
+
easing.type: Easing.OutQuint
|
84
|
+
}
|
85
|
+
}
|
86
|
+
}
|
87
|
+
}
|