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,115 +1,116 @@
|
|
1
|
-
Metadata-Version: 2.
|
2
|
-
Name: RinUI
|
3
|
-
Version: 0.1.
|
4
|
-
Summary: A Fluent Design-like UI library for Qt Quick (QML) based on PySide6
|
5
|
-
Author-email: RinLit <lintu233_qwq@icloud.com>
|
6
|
-
Classifier: Programming Language :: Python :: 3
|
7
|
-
Classifier: License :: OSI Approved :: MIT License
|
8
|
-
Classifier: Operating System :: OS Independent
|
9
|
-
Requires-Python: >=3.8
|
10
|
-
Description-Content-Type: text/markdown
|
11
|
-
License-File: LICENSE
|
12
|
-
Requires-Dist: PySide6>=6.6.3.1
|
13
|
-
Requires-Dist: darkdetect~=0.8.0
|
14
|
-
Requires-Dist: pywin32>=306; sys_platform == "win32"
|
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
|
-

|
23
|
+
|
24
|
+
</div>
|
25
|
+
|
26
|
+
> [!TIP]
|
27
|
+
> This project is still in development and not ready for production use!
|
28
|
+
>
|
29
|
+
> Of course, you are welcome to contribute to this project.
|
30
|
+
|
31
|
+
## 📄 Introduction
|
32
|
+
|
33
|
+
RinUI is a UI library similar to Fluent Design for Qt Quick (QML), RinUI will provide high-quality components and practical functions.
|
34
|
+
With simple configuration, you can quickly develop elegant UI interfaces in the Fluent style.
|
35
|
+
|
36
|
+
### Features
|
37
|
+
* Elegant Fluent Design controls (WIP)
|
38
|
+
* Dark and light mode, automatic switching
|
39
|
+
* Compatible with original QML control names
|
40
|
+
* i18n Internationalization
|
41
|
+
* Multi-programming language support (WIP)
|
42
|
+
* Theme system (WIP)
|
43
|
+
* Development documentation, [preview](https://ui.rinlit.cn/) now. (WIP)
|
44
|
+
|
45
|
+
### Screenshots
|
46
|
+

|
47
|
+
|
48
|
+
<details style="text-align: center">
|
49
|
+
<summary>More screenshots...</summary>
|
50
|
+
|
51
|
+

|
52
|
+

|
53
|
+

|
54
|
+

|
55
|
+
</details>
|
56
|
+
|
57
|
+
> The image in the banner comes from Pixiv, PID: [125975786](https://www.pixiv.net/artworks/125975786)
|
58
|
+
|
59
|
+
## 🪄 Usage
|
60
|
+
|
61
|
+
You can install RinUI via pip:
|
62
|
+
```bash
|
63
|
+
pip install RinUI
|
64
|
+
```
|
65
|
+
|
66
|
+
Import RinUI in your QML file:
|
67
|
+
```qmllang
|
68
|
+
import RinUI
|
69
|
+
```
|
70
|
+
Then you can run the QML file in your project.
|
71
|
+
```python
|
72
|
+
import sys
|
73
|
+
from RinUI import *
|
74
|
+
from PySide6.QtWidgets import QApplication
|
75
|
+
|
76
|
+
if __name__ == '__main__':
|
77
|
+
app = QApplication(sys.argv)
|
78
|
+
your_app = RinUIWindow("/path/to/your/file.qml")
|
79
|
+
sys.exit(app.exec_())
|
80
|
+
```
|
81
|
+
|
82
|
+
You also can view the demo in the source code, like this:
|
83
|
+
```bash
|
84
|
+
cd examples
|
85
|
+
python gallery.py
|
86
|
+
```
|
87
|
+
|
88
|
+
You also can move the RinUI folder to anywhere in your project's directory.
|
89
|
+
|
90
|
+
> [!NOTE]
|
91
|
+
> The documentation is still in progress!!
|
92
|
+
> You can view the source code to learn more about the components and themes at the moment.
|
93
|
+
|
94
|
+
Now you can learn more about RinUI components and themes in [the online documentation](https://ui.rinlit.cn/).
|
95
|
+
|
96
|
+
## 🙌 Acknowledgements
|
97
|
+
### Resources
|
98
|
+
- [PySide6 & Qt Quick](https://www.qt.io/)
|
99
|
+
- [Fluent Design System](https://fluent2.microsoft.design/)
|
100
|
+
- [Fluent UI System Icons](https://github.com/microsoft/fluentui-system-icons/)
|
101
|
+
- [WinUI 3 Gallery](https://github.com/microsoft/WinUI-Gallery)
|
102
|
+
|
103
|
+
### Contributors
|
104
|
+
Contributions are welcome! Please read the [contribution guidelines](./CONTRIBUTING.md) before submitting a pull request.
|
105
|
+
|
106
|
+
Thanks to the great people who contributed to this project.
|
107
|
+
[](https://github.com/RinLit-233-shiroko/Rin-UI/graphs/contributors)
|
108
|
+
|
109
|
+
## 📜 License
|
110
|
+
This project is licensed under the **MIT** License, you can learn more about it in the [license file](./LICENSE).
|
111
|
+
|
112
|
+
Copyright © 2025 RinLit
|
113
|
+
|
114
|
+
##
|
115
|
+
|
116
|
+
This is an experimental project by Rin as a newcomer. Welcome to suggest and contribute to this project. ❤️
|
@@ -0,0 +1,112 @@
|
|
1
|
+
RinUI/__init__.py,sha256=_5VlpDxB19jOY72Tlru6omOpL80g5CkXSKytxs0BngM,65
|
2
|
+
RinUI/qmldir,sha256=fwUoGC3efxNnNJmFU6inBDH6Tx9s3-OI4b3-a-25o0U,3829
|
3
|
+
RinUI/assets/fonts/FluentSystemIcons-Index.js,sha256=M2fUmCiOI7A1rxLWMFaekrB4KmasTSwbociYOzHJegE,253422
|
4
|
+
RinUI/assets/fonts/FluentSystemIcons-Resizable.ttf,sha256=-IfF3NT1eODD0vOLVLC0Z2U5bsR6woSQAziX3qD1TqU,1447252
|
5
|
+
RinUI/assets/img/default_app_icon.png,sha256=8O83zl-bghUNsmEx9iCWYiXS8aC_0VGZKqMHdNKjB4A,292885
|
6
|
+
RinUI/components/Base.qml,sha256=Py3eD-f3FCtIqIxdRMGbAbQKKQ17L6Ddwji1mjywlWM,2361
|
7
|
+
RinUI/components/ContextMenu.qml,sha256=aqu0QCUefwFZmLVp4vP0zQy__Ic45nwDfXTzBg-TBGc,5597
|
8
|
+
RinUI/components/FocusIndicator.qml,sha256=limqPohJ9F8af0H2cpZBoq3ETqcR2XD6RNYqOWQEq80,893
|
9
|
+
RinUI/components/IconWidget.qml,sha256=W_9JN11Ek_rS_RZqNHXIfcmm1wo6gnt8Lx_hfpmC8aA,1684
|
10
|
+
RinUI/components/Indicator.qml,sha256=nTF4i3tqLirb-gZlK1BCNzt0pVXgcvDBcJ2O-tOcQ8U,2538
|
11
|
+
RinUI/components/ScrollBar.qml,sha256=EZt2o_yVi--Q0BPQCqebau9bu7_ogNvqglrRXnB_eW8,6914
|
12
|
+
RinUI/components/ScrollView.qml,sha256=nMXwarFEnr8HVxRE1FjwyCuVIm2jvt_ZZBi8LGlkwCI,263
|
13
|
+
RinUI/components/Shadow.qml,sha256=8y9iAFr45hqDdXXnsfD49t90HHhiFyMzGUHqJa2tavk,1591
|
14
|
+
RinUI/components/qmldir,sha256=KiTLgqw5x2LehrUxVfaFZUkD0Al2n2dPjD30gA_6fWk,2255
|
15
|
+
RinUI/components/BasicInput/Button.qml,sha256=78Qi7w7cR7N7nwdc9n1JNQ9F_SBlhF6KdVmdPQyqR2o,5244
|
16
|
+
RinUI/components/BasicInput/CheckBox.qml,sha256=SJkmo16EY-5omXBxkS74Pk3UcSE_LODABIjiP086aNM,3085
|
17
|
+
RinUI/components/BasicInput/ComboBox.qml,sha256=tylWrL2FZT2n4lc1VxTBx1H2jyi0RQauUL58TWf0Fxc,4589
|
18
|
+
RinUI/components/BasicInput/DropDownButton.qml,sha256=TEgRZgjCCOZMPuT8xXrsqCIEuZ7wObRX88PF1unWuaE,390
|
19
|
+
RinUI/components/BasicInput/Hyperlink.qml,sha256=8K1JoyX6AKw25QJW-aiVFah5yKmvS1WpxEcXMduM94M,329
|
20
|
+
RinUI/components/BasicInput/PillButton.qml,sha256=2eFgpKupz7xlGIWcJOHya4nK616ffByYD_oPRKQiSTg,205
|
21
|
+
RinUI/components/BasicInput/RadioButton.qml,sha256=9Ekopn0emA9GjSJugqeGeqGpse4auelAZQfm49ZVszM,3035
|
22
|
+
RinUI/components/BasicInput/RoundButton.qml,sha256=TvgnXIZlYnQ5cu4gdTW3rzjG68iF1KTeGv8MQU2Xzn4,1022
|
23
|
+
RinUI/components/BasicInput/Slider.qml,sha256=DKfIo6VLB1pBNekx6Lr-x-PElB8YOYaH5sKYX_15_bM,6945
|
24
|
+
RinUI/components/BasicInput/Switch.qml,sha256=MYP3B30thw-xHXXI39RoQYQbCDBVKVLfWUjEiFUzIs8,3258
|
25
|
+
RinUI/components/BasicInput/ToggleButton.qml,sha256=WhWbjiMSDpHLiGCGSfZ12byHfGA1qjWF9a693m5bddc,200
|
26
|
+
RinUI/components/BasicInput/ToolButton.qml,sha256=J_a1tUmV-6fVzwL2Y-xdt-CP9Sa6xUrBCd_GOR6CvUQ,923
|
27
|
+
RinUI/components/DateAndTime/DatePicker.qml,sha256=4t0vGd05yhQ51Z61aMzuxx8hxbn7aHAderzDaESYODQ,4664
|
28
|
+
RinUI/components/DateAndTime/PickerView.qml,sha256=38K3IaQFpnARnidXNxrt9M_8Nl3p-Vzjhm2VthITbL0,7057
|
29
|
+
RinUI/components/DateAndTime/TimePicker.qml,sha256=gv7q3E36rhNThkQ24Jdvs3ihKhCfztYFO-MnUXbDmrw,3730
|
30
|
+
RinUI/components/DialogsAndFlyouts/Dialog.qml,sha256=J9VWEgkoUv4n5xQ6Jjlod1zMkk_kuraYDK_73sZBz3c,2653
|
31
|
+
RinUI/components/DialogsAndFlyouts/DialogButtonBox.qml,sha256=6a-Ni71qCKcMRUe-Hv3HzXs2xHAskiXhrVe-k9zTLQM,1127
|
32
|
+
RinUI/components/DialogsAndFlyouts/Flyout.qml,sha256=fbHIq_E80xK_tZw7B0h7deHdvvR6jQcMbhjfGr8KxUA,2367
|
33
|
+
RinUI/components/DialogsAndFlyouts/Popup.qml,sha256=js3Ns6IX9_Oj7NxqmlaVSf9IGbqF1OWNRFmZFsyJ2eU,3246
|
34
|
+
RinUI/components/Layout/Expander.qml,sha256=vHgKiSD0XKkiv6QBcPgB2OmIBhmqJz0EErkVV2tZWlQ,4700
|
35
|
+
RinUI/components/Layout/SettingExpander.qml,sha256=FTItXWb66drvFWpWSUujkERKTTTB8cX25BWLiSVJDWw,1884
|
36
|
+
RinUI/components/Layout/SettingItem.qml,sha256=T7MphGONUkLMVv8-QA6FcNb73RGR8kI9jD8Up3Lj2eU,2003
|
37
|
+
RinUI/components/ListAndCollections/Clip.qml,sha256=1V2mQRRLj3zvBhBBU8XaFEvY_Z1tNIpLOKZT9QQN0xU,477
|
38
|
+
RinUI/components/ListAndCollections/Frame.qml,sha256=0uyUB0Hldb7L7MfvvJFLXGLHvM18mvCX6eckBOT52tc,1364
|
39
|
+
RinUI/components/ListAndCollections/ListView.qml,sha256=cJBRVkUGXgBd_J482bc_9e-B6ReOXKZS9gNmHh7l6og,3013
|
40
|
+
RinUI/components/ListAndCollections/ListViewDelegate.qml,sha256=qkosL3_u-7GrtCb01vOEP6Bs_RMYmDjUwYwlhmhhLVs,2101
|
41
|
+
RinUI/components/ListAndCollections/SettingCard.qml,sha256=hrNlpWmxvzUiGzBvBXkdkB1mlp2zuw2Hrt56EMd2amA,2136
|
42
|
+
RinUI/components/ListAndCollections/TableView.qml,sha256=71zKoiHLmfmmxD72WJvmmGGLyvfNeGKzllD7EgB9Ok0,2151
|
43
|
+
RinUI/components/ListAndCollections/TableViewDelegate.qml,sha256=IW8JVDiRSO9X7Z-lForRh6q4qFWuuhjtWKZXBjaZXOg,2283
|
44
|
+
RinUI/components/Media/Avatar.qml,sha256=8I7MlIalrs4S0WTKTuMU9qxbUkYDrJ-bhKPHjv12-SM,2088
|
45
|
+
RinUI/components/MenusAndToolbars/Menu.qml,sha256=LOjoQa0rYNWj0cjc4WctesJdrcaWkRTZXHeEYc3la8o,4503
|
46
|
+
RinUI/components/MenusAndToolbars/MenuBar.qml,sha256=YqNcY9Tn2t3NmaDqYCHJIUd_j9EXtn0dtOHYCd7sRXQ,1055
|
47
|
+
RinUI/components/MenusAndToolbars/MenuItem.qml,sha256=jZRm-ULnrJSbo7rjzLD15ENn2gxAscJLkwiRo67Rfr4,3784
|
48
|
+
RinUI/components/MenusAndToolbars/MenuItemGroup.qml,sha256=FqnDxo7C6DQ-1xvurHtjxuiRZOD69MxdsKT-h236cIk,1014
|
49
|
+
RinUI/components/MenusAndToolbars/MenuSeparator.qml,sha256=J9oFbxpUeu43EExlxOX3maGGDwPzDIzeZIuJzIJfckI,257
|
50
|
+
RinUI/components/MenusAndToolbars/TextInputMenu.qml,sha256=Rm0CT6sKdK5IOQAjtYEaJxqK3RdEZqXe9PjIoWBp1yM,939
|
51
|
+
RinUI/components/MenusAndToolbars/ToolSeparator.qml,sha256=X2cKZnTYhYUO0jOVRCwx81QSz4YNwVWRXoSD7kT86V4,414
|
52
|
+
RinUI/components/Navigation/ErrorPage.qml,sha256=XplTs6CKs1Y1441uvp9nSD4AeD08OIqoXlmz5RlpCPo,1039
|
53
|
+
RinUI/components/Navigation/NavigationBar.qml,sha256=XJ9TTgDByGCfUBukNPYQRWhShtiaeJL5vFGZtWGU9Co,4896
|
54
|
+
RinUI/components/Navigation/NavigationItem.qml,sha256=hXOx6FBL2yR1kXjibuNv1hN0aQZuI0NfcUxDdoYUj9c,5754
|
55
|
+
RinUI/components/Navigation/NavigationSubItem.qml,sha256=MCrPLIJMPZxUiGJRvtzfGAKBERtyjKYEkc-v6YxTD2U,2938
|
56
|
+
RinUI/components/Navigation/NavigationView.qml,sha256=TRaNyLsZGAwf2M1CCzypLHy6qL6QtO2dXfni8A5nOZo,7350
|
57
|
+
RinUI/components/Navigation/Segmented.qml,sha256=GnLKbJlNxGsaYnSnNflZ3rB3fe5HsRCySE1XEIQxGoQ,504
|
58
|
+
RinUI/components/Navigation/SegmentedItem.qml,sha256=r2e1PteQJTPiqjpCqtGlSIuzCLG03ov9AcPIfqwRJDg,2894
|
59
|
+
RinUI/components/Navigation/SelectorBar.qml,sha256=R0DWhWD75QaRYBYV5TTltJm4Y6KJ1ax29khdtn5GvDI,207
|
60
|
+
RinUI/components/Navigation/SelectorBarItem.qml,sha256=ohdqUxczPJw_SNFLYOIu8rIYa3gWDH-PTd5DRQ8jUpU,2104
|
61
|
+
RinUI/components/StatusAndInfo/InfoBadge.qml,sha256=G_mRlnGVhL-Eyo0LB7PWl-i8C-sUGzzXeKaVkz9Fpa0,2380
|
62
|
+
RinUI/components/StatusAndInfo/InfoBar.qml,sha256=Uz2aiguRpA3K9K5-yy9GNTgJ9cy9a-LVxCI_XsqxfDk,7596
|
63
|
+
RinUI/components/StatusAndInfo/ProgressBar.qml,sha256=GgV0rPLB1JCpwuSD2LOj7UX5JKVaCRkEsSC13kYObtY,3389
|
64
|
+
RinUI/components/StatusAndInfo/ProgressRing.qml,sha256=bt-HDVgW-UXhrYEeGpnTOWTNsYGNHp6Q9B4U_qI3yAw,5118
|
65
|
+
RinUI/components/StatusAndInfo/Toast.qml,sha256=XWZPgFBJnqoWoS6H9W3ycC9JTU1CTzehqVIm2KXhD6Y,6815
|
66
|
+
RinUI/components/StatusAndInfo/ToolTip.qml,sha256=f6S9rG_0GsHQl8BB1m4Niik35s7LngelAasLfFkdR7s,2664
|
67
|
+
RinUI/components/Text/SpinBox.qml,sha256=rY17yJ3a0ckkl6pX00qVIQQYLmoO-GLtcSZh-WKtPZs,4616
|
68
|
+
RinUI/components/Text/Text.qml,sha256=SWJBJtAWkq9XldrX6_BWfCXGRcLQLBNofkRO5NG8q2Q,1714
|
69
|
+
RinUI/components/Text/TextArea.qml,sha256=guhwcFBSEyZkTRT2V0ER3S03xW9WOkH_4U2Oor2I9PY,3706
|
70
|
+
RinUI/components/Text/TextField.qml,sha256=1DBiO9UCfDTpwma4bWVWXWfolhQu_i4qnhGWascX7dU,3522
|
71
|
+
RinUI/components/Text/TextInput.qml,sha256=gyTJmrYi5yuc-j5dDRSbu5PCxiuQo2xNBm6jWL9ezYk,1611
|
72
|
+
RinUI/core/__init__.py,sha256=LF4-YjoBLaix1UEWYzc5rhXiYGdZXC_J-NyCoYkCpUE,196
|
73
|
+
RinUI/core/config.py,sha256=kO0bR1EhZB6Mh0KFa7uyBa0KgYr58DdBsHEP2oSGX7U,3722
|
74
|
+
RinUI/core/launcher.py,sha256=sSPWi8iERTuVmtcIYe0PYcAkKKizrN_bNLhnChggv8k,4616
|
75
|
+
RinUI/core/theme.py,sha256=BK9EovR2sHvcNarzptgsoMOll78R1B_ftKwEUqzqQhA,10672
|
76
|
+
RinUI/core/translator.py,sha256=0U4QLatk_DbbQ3UBPjWaInvJLrg6qjD4F7bemrL0thg,950
|
77
|
+
RinUI/hooks/__init__.py,sha256=7sQJlly1ZbiZTzZUkCV2hI_gY-DAxWP_0kLyhZQ2Tm8,74
|
78
|
+
RinUI/hooks/hook-RinUI.py,sha256=VvQui-b3YNuxvhqjRJqLPKdtnWQ6Ev8G9DEgzGNUUUI,116
|
79
|
+
RinUI/languages/en_US.qm,sha256=mVm1ELFdGJN4SK0TAH4wRZ0umTxn5WS62_wY-TVpXIU,16
|
80
|
+
RinUI/languages/en_US.ts,sha256=G4-J3m4FUwJRhYvJg9aqS4MYXVu6TQV_GvPBAJVrV-0,6804
|
81
|
+
RinUI/languages/zh_CN.qm,sha256=bQCxv9OfHL8xJbBZYXPZvpPJ6v_czMeVin5Kdnn7LSA,1697
|
82
|
+
RinUI/languages/zh_CN.ts,sha256=fKkkNsnSkFtPXpDiHWhoNnbmGGbTnGz81lrZYeSFVaE,6578
|
83
|
+
RinUI/themes/Appearance.qml,sha256=pnPx47L7A1NZT0qiIfltf9ktnK-dWRi6MqUjMLdxeww,1002
|
84
|
+
RinUI/themes/Colors.qml,sha256=IZ3Ojdw4vGV3-1aDhMxy5wE0Q8TkBMzc2iLFm7Qr9FQ,1000
|
85
|
+
RinUI/themes/dark.qml,sha256=qAn7MDh18K-44f4gPIRiA1l_T_PWoBxhhzh0Z6igC0w,5793
|
86
|
+
RinUI/themes/light.qml,sha256=L1Qy1yotvF3GemfhQxxTt1keyMdsjOoK9COP6NyVQHE,5741
|
87
|
+
RinUI/themes/qmldir,sha256=7SbN6C8cqEW6VvPb-eYg9AlppfkehmekbciYNHRoNSA,184
|
88
|
+
RinUI/themes/theme.qml,sha256=srSHRVV9KmQBc9uYitHDjMvXFzvLPolaLu82Tf0uc_Q,4265
|
89
|
+
RinUI/themes/utils.qml,sha256=Oz8ezVhCgugCerZUAO9_FBXIRzJSX5GZA4L-94onxMw,1675
|
90
|
+
RinUI/utils/Animation.qml,sha256=hRzsJU_5G78JArYLvVtxTmRxX2VAuMgeWdAHzqyuYWQ,134
|
91
|
+
RinUI/utils/FloatLayer.qml,sha256=D0rkYxK6_09OjrNuLHDXhdsb4xbUq5l2IiuLHCsLGhE,3471
|
92
|
+
RinUI/utils/FontIconLoader.qml,sha256=Zm-talvAPxCBSt4nd8gpJ6jY91R1uRoJvaXKU3AaWEU,294
|
93
|
+
RinUI/utils/Position.qml,sha256=QuD_cYdU7ku3L1zxFX8e0ZKDvOOW7xbilP2_ebr7WB8,256
|
94
|
+
RinUI/utils/Severity.qml,sha256=fN3YQ_88kNGB-Z57pzcDrz15r-JPMLPJfNUVqKkYbas,155
|
95
|
+
RinUI/utils/Typography.qml,sha256=EJIlEymSWH4lWyRIrdWD9UZaExgGld81YQF1diaKKq8,232
|
96
|
+
RinUI/utils/qmldir,sha256=W2UTrZ5VPdRO64FZ3Pw-_8B2UPj7A_eHsGrLPvWtiZY,189
|
97
|
+
RinUI/windows/CtrlBtn.qml,sha256=xfjN0EujIp-tsLA29U7-hr9U4LnKmXVviFX8J1qrvs4,3272
|
98
|
+
RinUI/windows/FluentPage.qml,sha256=J7mXTOyMahdWA8U13rSjesJVsvxklZFQyqwVMiJarT8,2748
|
99
|
+
RinUI/windows/FluentWindow.qml,sha256=fR7JsLa-0QqrKFCh4kh6ZhQL7LoIRSPChKuoiYCeGLs,905
|
100
|
+
RinUI/windows/FluentWindowBase.qml,sha256=yILs8wZ0k_I-eS076gPa_hZsS6snPqVzs9LQQ_Q7vMo,4625
|
101
|
+
RinUI/windows/TitleBar.qml,sha256=zzOGP6fLm692BMY2UF_eDwjsgtVIZ0Fx90VDPGweHLA,3742
|
102
|
+
RinUI/windows/qmldir,sha256=LMeM0QzRNU0CIHemtD1j19hGRCuV987DRDuB5W6UJ-k,205
|
103
|
+
RinUI/windows/window/ApplicationWindow.qml,sha256=4_COTBi9SoHeHdS0lIOPvqncevUB4P18svZfH3V5GaM,188
|
104
|
+
RinUI/windows/window/Window.qml,sha256=pye3j-RI7Tzm8WW7oIctaeFxQ-FJsqXpW2U4Xp3m418,3485
|
105
|
+
rinui-0.1.1.data/data/LICENSE,sha256=vgoqqpny5vKYu34VDBUWYQKzT7Nn-Xy9y8USmcOCyZQ,1063
|
106
|
+
rinui-0.1.1.data/data/README.md,sha256=8ZcR55RYV2slRAQbhoYhqDTPOLXmewkFSvuA_cE6zD0,3044
|
107
|
+
rinui-0.1.1.dist-info/licenses/LICENSE,sha256=vgoqqpny5vKYu34VDBUWYQKzT7Nn-Xy9y8USmcOCyZQ,1063
|
108
|
+
rinui-0.1.1.dist-info/METADATA,sha256=5euifDbnZtVxmgkGN3bD_8eCfZRKcomQt5qV47Ckb_o,3589
|
109
|
+
rinui-0.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
110
|
+
rinui-0.1.1.dist-info/entry_points.txt,sha256=taxuZYCggoQa2LPubwcurQYRjBRC4cNYOjWaqOYZVxw,54
|
111
|
+
rinui-0.1.1.dist-info/top_level.txt,sha256=vKKjXBXEw5OFRIzTxZWUC5ZOj0CK5e3atbymBB4eJ6w,6
|
112
|
+
rinui-0.1.1.dist-info/RECORD,,
|
@@ -1,21 +1,21 @@
|
|
1
|
-
MIT License
|
2
|
-
|
3
|
-
Copyright (c) 2025 RinLit
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
13
|
-
copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
SOFTWARE.
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2025 RinLit
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
Binary file
|
RinUI/config/rin_ui.json
DELETED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
rinui-0.1.0.dist-info/RECORD
DELETED
@@ -1,116 +0,0 @@
|
|
1
|
-
RinUI/__init__.py,sha256=P4P_cLIyRXIeqnX5EgOm4i4u_YMJIzvYaitiT_gBc-Y,69
|
2
|
-
RinUI/qmldir,sha256=DDb5LGs5T_hYUJ4-eObD34PghPlgs2KAouU2KA6EaS4,3739
|
3
|
-
RinUI/__pycache__/__init__.cpython-38.pyc,sha256=uHwmokq_9l1VA5_6BJej_mO-spqvcKoNb2wHdG4HppA,220
|
4
|
-
RinUI/assets/fonts/FluentSystemIcons-Index.js,sha256=XCgcjUnuZjdsjXUu37llGDpQW8sSJbxwmh-hG6UTB2A,258677
|
5
|
-
RinUI/assets/fonts/FluentSystemIcons-Resizable.ttf,sha256=-IfF3NT1eODD0vOLVLC0Z2U5bsR6woSQAziX3qD1TqU,1447252
|
6
|
-
RinUI/assets/img/default_app_icon.png,sha256=8O83zl-bghUNsmEx9iCWYiXS8aC_0VGZKqMHdNKjB4A,292885
|
7
|
-
RinUI/components/Base.qml,sha256=YifNpJR3iywAhbWkzGciOF-fyL_eb6YohrgLjDOxTkA,2439
|
8
|
-
RinUI/components/ContextMenu.qml,sha256=GV2SOLNxhgKDHRpZoJU6fahDvJiP98NC2E1Ujosw4yA,5780
|
9
|
-
RinUI/components/FocusIndicator.qml,sha256=R54F-CtUEeNmtoFmCX2Wo-7dom6MAhiWqN8vFapzUPo,926
|
10
|
-
RinUI/components/IconWidget.qml,sha256=pJtNZYWxde-2_e0rALv_jZNByNx1Oir4wJ8hWmdKrns,1736
|
11
|
-
RinUI/components/Indicator.qml,sha256=yIC96KZo6vhXE1aEX7wz2m2iwb8KXBWCqgxKrsLomT8,2627
|
12
|
-
RinUI/components/ScrollBar.qml,sha256=01Qo9eAYRzEQhIU4oD2E7lCLdFGCmekhO32z-DCqo4o,7118
|
13
|
-
RinUI/components/ScrollView.qml,sha256=S6GuZm9lptsZduH-xVDGKkS3BqGqi8EmyiBFvbVFAgM,275
|
14
|
-
RinUI/components/Shadow.qml,sha256=YmVgAPAIY69ur57EDMDKMihx6ucI973SWyff01L8r0s,1638
|
15
|
-
RinUI/components/qmldir,sha256=1Q9BIhNGkpdDyOiLWnZpnC6MTkT8KUT8tDPj8HC4NzY,2335
|
16
|
-
RinUI/components/BasicInput/Button.qml,sha256=bZGURFGOSnHdHlFEq0OuNmdpk-mJQh7yo5pUBYUZRYU,5390
|
17
|
-
RinUI/components/BasicInput/CheckBox.qml,sha256=hFSaKw5LLqSVZXTASQ5csCkTHUOBRZ700v4hm6uEfFM,3183
|
18
|
-
RinUI/components/BasicInput/ComboBox.qml,sha256=OOJSoLGBnNJ8O--htkZfT8VDu7jAwHYbS-B_NB9J-SA,4748
|
19
|
-
RinUI/components/BasicInput/DropDownButton.qml,sha256=loDUw_k9GeBUFSgb3McRIdCuLxptoj5Vc8jxinJMoCE,410
|
20
|
-
RinUI/components/BasicInput/Hyperlink.qml,sha256=WGFuTNCD8xfvdKDMgohKT4bvU8_qK1iv5SJYeqJk4Kg,346
|
21
|
-
RinUI/components/BasicInput/PillButton.qml,sha256=D5P4HKd99OVwKMYerm1omo6obleCur_HO_Y-WF13b28,215
|
22
|
-
RinUI/components/BasicInput/RadioButton.qml,sha256=lck3xdKO778ukm5jjHflGNXnDsxdBPMHTisD9GnQYS0,3129
|
23
|
-
RinUI/components/BasicInput/RoundButton.qml,sha256=Ex-NnD3qcYQqdreL-Gv8NOYkv0u7b67fPCu4soZGCEM,1048
|
24
|
-
RinUI/components/BasicInput/Slider.qml,sha256=XJ0gXqHrBffF0PNDpx7TWxFTyZ7NAOxLU8Hg4c3XV9Y,7157
|
25
|
-
RinUI/components/BasicInput/Switch.qml,sha256=6CMQKKAs7tdIT_bdTplUk50bS7ywunYtqfT2v2sOhrI,3359
|
26
|
-
RinUI/components/BasicInput/ToggleButton.qml,sha256=y3bm0agSYT1v4Jzs_-JgAFNf5b_oBzliUyL6QChM6rA,210
|
27
|
-
RinUI/components/BasicInput/ToolButton.qml,sha256=jz2-ddMGdFQIoPHCwOIVbYsp6mRwZgAGrowNHs8P3QU,953
|
28
|
-
RinUI/components/DateAndTime/DatePicker.qml,sha256=vP3SPpJ21ObxYUqEc7hzbJUsFTaiM_D3aSZgIQGM8ys,4776
|
29
|
-
RinUI/components/DateAndTime/PickerView.qml,sha256=Av2ybHDQ-Hc00cxi3g97y0wyXZ_aCgq27LQkq9c9dBA,7280
|
30
|
-
RinUI/components/DateAndTime/TimePicker.qml,sha256=KKOVLvKPm5moYIZaRxesRzi9v2pAK5xypCIfDda7N_Q,3844
|
31
|
-
RinUI/components/DialogsAndFlyouts/Dialog.qml,sha256=KIIswm78ly6BK37wfb5mg26CjpGr-ehp0YdTpo902io,2759
|
32
|
-
RinUI/components/DialogsAndFlyouts/DialogButtonBox.qml,sha256=60vE_o-3IgF8Ol0OkobJTeWYE4xaxiD1jFoKN1ZARXg,1174
|
33
|
-
RinUI/components/DialogsAndFlyouts/Flyout.qml,sha256=Q-UmV2SoirbwJncjUyeDyzjchEHmm__MI324k3gUvBw,2454
|
34
|
-
RinUI/components/DialogsAndFlyouts/Popup.qml,sha256=U0TXPlU22EObTrNsXw2FI4s8MruWP0w4T6lSqOEYTLc,3252
|
35
|
-
RinUI/components/Layout/Expander.qml,sha256=XUm0YSy0cMS6wJxstxpzVXXddY0iIridpeQxZc8gxyU,4859
|
36
|
-
RinUI/components/Layout/SettingExpander.qml,sha256=e4xDD6ndlQDkBBJyp7AtMdpfkVpzRnesJPzIWVlMBx0,1950
|
37
|
-
RinUI/components/Layout/SettingItem.qml,sha256=azdd-pLMs9WyDsztX5xfcswIHN2u_c_5gHfNSSXbxOY,2073
|
38
|
-
RinUI/components/ListAndCollections/Clip.qml,sha256=Y--dOjURRLADcDNsJEjJty0uOBgsc-o_X39IbLqhqDI,498
|
39
|
-
RinUI/components/ListAndCollections/Frame.qml,sha256=2NNPfTmsgc734hRpVv-eEQfkMT03vz28uz6xUQXliKI,1407
|
40
|
-
RinUI/components/ListAndCollections/ListView.qml,sha256=jnYhxIUMs0iMsznMWG-q8OX0c-eIpoKqif03M3OqkuE,3117
|
41
|
-
RinUI/components/ListAndCollections/ListViewDelegate.qml,sha256=AQAsrtleMO5t3601YvGEjZxIQ99zGId60rpf9G1ao-A,2183
|
42
|
-
RinUI/components/ListAndCollections/SettingCard.qml,sha256=CaR-MQnMIFjwnVM0VhI2IqSenBNtz_kGA4ExzxAjmLE,2208
|
43
|
-
RinUI/components/ListAndCollections/TableView.qml,sha256=RJZQPb4yIdcE1jUJ4iQOHDSB5l4O3s7g3oKSuRaubI0,2232
|
44
|
-
RinUI/components/ListAndCollections/TableViewDelegate.qml,sha256=lH19q3Vx9X6TYhgnRlwi7RGnAtb_k3dBbgJZlnQnEmE,2371
|
45
|
-
RinUI/components/Media/Avatar.qml,sha256=JnDHQ8jSq_8gHAMIwnMoOJBPikjuwGJvd0Ul6txOD04,2170
|
46
|
-
RinUI/components/MenusAndToolbars/Menu.qml,sha256=AbnOkFR6nweWIBe1A4dsnZmb3eHHjqfokMVRNed-PPU,4653
|
47
|
-
RinUI/components/MenusAndToolbars/MenuBar.qml,sha256=HR1pSTqklkLFiGkOTGxgRO9WFtsKRlxAT1sSzqYVP7Q,1097
|
48
|
-
RinUI/components/MenusAndToolbars/MenuItem.qml,sha256=XghKdgYVksNKS1zufNtE96c0pnTQg6Dig_8ZNGqip84,3915
|
49
|
-
RinUI/components/MenusAndToolbars/MenuItemGroup.qml,sha256=ywDv4KypNoTQbiDTeIedBj7Dfvcy9jdFtwwK7hSaozE,1057
|
50
|
-
RinUI/components/MenusAndToolbars/MenuSeparator.qml,sha256=Z2G339bFrwOzRpWSqqahjmgJL5u-k-sw3g1uAHXerxQ,270
|
51
|
-
RinUI/components/MenusAndToolbars/TextInputMenu.qml,sha256=Xiqh-gnDHhFY8JvaPgVc4fPiISU29uzrEck1K-P87PI,976
|
52
|
-
RinUI/components/MenusAndToolbars/ToolSeparator.qml,sha256=rZXXNnvKw3yZVptj1bOronPDkiYCId1ffAt-a3t-ea4,430
|
53
|
-
RinUI/components/Navigation/ErrorPage.qml,sha256=uQ3UBby1vP6-SBjw1_7aU6hRNXmcqNdBKzC-EuB6a7U,1087
|
54
|
-
RinUI/components/Navigation/NavigationBar.qml,sha256=RR8PjDNl0lqfwcvnx0EvooAnVx4db6Q8o1L03ghzdlE,5075
|
55
|
-
RinUI/components/Navigation/NavigationItem.qml,sha256=YzveFBTT4I-NVF40NSVD3GCOgP0qdK3aWMA_3IGxuP0,5947
|
56
|
-
RinUI/components/Navigation/NavigationSubItem.qml,sha256=Xap5EX41SWPOIzvd9FmTR4-zJIwHTe2OvestK_j_jso,3041
|
57
|
-
RinUI/components/Navigation/NavigationView.qml,sha256=8RQh88UbCBvxL9FQDnnMznCy0PR2kAE6-ppudzZQj_k,7496
|
58
|
-
RinUI/components/Navigation/Segmented.qml,sha256=uOqp8DYh0Lyx3bndYdIVXBdaqmI-qaWTRfSMMQUd2OQ,520
|
59
|
-
RinUI/components/Navigation/SegmentedItem.qml,sha256=fKJUXT9Tb_PKzqiXFwNXRcRvJevFWRZEd3VOhuGoHjo,3001
|
60
|
-
RinUI/components/Navigation/SelectorBar.qml,sha256=xGP9V6BvPRYJQAIkMyanUMEGL3AbNok9Cj973920cN0,219
|
61
|
-
RinUI/components/Navigation/SelectorBarItem.qml,sha256=BGPqY5HGefEkIzZo98dFuBpJJN_lPtv2Mcg82gNOxGQ,2192
|
62
|
-
RinUI/components/StatusAndInfo/InfoBadge.qml,sha256=AmyrUwPLP62x83mFlZu6aio7DFOtVK6mKhPVMVBjpQw,2457
|
63
|
-
RinUI/components/StatusAndInfo/InfoBar.qml,sha256=LlW1ObaCOyBs6P5j8oNUSDfGxiXnP6m_jv1HLpK6S-Q,7728
|
64
|
-
RinUI/components/StatusAndInfo/ProgressBar.qml,sha256=RAivKVM8C3JcQFjR6VZPz0H7XqWpSPq5G9qfnh2ABmQ,3515
|
65
|
-
RinUI/components/StatusAndInfo/Toast.qml,sha256=9T8i9JswzGEXZM8CeZbwWsILEbzymy2ZaPwJEUBXXTw,7051
|
66
|
-
RinUI/components/StatusAndInfo/ToolTip.qml,sha256=js0t8IJ6bnYt8JHHMQwS49MQOhaBjLNYP_libFbZROk,2757
|
67
|
-
RinUI/components/Text/SpinBox.qml,sha256=YC1CjlHauP081qtseFQuSDNCUsCnCgtjh8nfgPqCZfU,4229
|
68
|
-
RinUI/components/Text/Text.qml,sha256=-VaPy0W4d8mE6C1crSA0ADReKdA_NlghxaS5iV_8RYg,1758
|
69
|
-
RinUI/components/Text/TextArea.qml,sha256=BA2YdHVfslv2d1AfHlPp-fpAK5tkWp6KgpU3FGetS1Q,3823
|
70
|
-
RinUI/components/Text/TextField.qml,sha256=Jdh8RqyGUB35lSLnv_662651eJsZEllXwGoaUS82HxU,3635
|
71
|
-
RinUI/components/Text/TextInput.qml,sha256=FI-ru7-hxG5aDJwUkMTRKbTkSgGmSgKC1inzSpDmNHM,1658
|
72
|
-
RinUI/config/rin_ui.json,sha256=rDCS0TVFt1VowGlcW_jqOM81DWwkV7S8Z5rae2p4TSk,149
|
73
|
-
RinUI/core/__init__.py,sha256=wNpVVuBWj3pX0eiq0P01QuN4oFxo_4bK5yuyj4vSO4Q,200
|
74
|
-
RinUI/core/config.py,sha256=0G1Wy2rT6b2FfRuJz3SHpoXiDnp7R012Al_9YYbdlz0,3851
|
75
|
-
RinUI/core/launcher.py,sha256=nZNa7Dt3LLhixODeleOof_KKwTojZi-6RSPLvaJtQE8,4745
|
76
|
-
RinUI/core/theme.py,sha256=cWTiVvCSIh5sLCZlZ1dB8VY0-fCrLULPVlj1TFjjKbU,11011
|
77
|
-
RinUI/core/translator.py,sha256=uFenyvJC-jD8S6Tm17OXeVQHp4kTwryHWGxqk9xbe44,975
|
78
|
-
RinUI/core/__pycache__/__init__.cpython-38.pyc,sha256=sEdnIYG9JymqK4ZnVJGwZZ-YopukgvFwAV3gLSvkQVw,433
|
79
|
-
RinUI/core/__pycache__/config.cpython-38.pyc,sha256=-LD5V93EHU-KlCDi3vBSEBr5yPkemkhFuygc9y1UXvA,4368
|
80
|
-
RinUI/core/__pycache__/launcher.cpython-38.pyc,sha256=yy-MEDwxSJCbyrOeACABF4eSK-_IHuV2Tl2zmhtyEuU,4788
|
81
|
-
RinUI/core/__pycache__/theme.cpython-38.pyc,sha256=h2oJQHNyjT12J4FG9uWED4gyMMqDma6P-vbxGCO3es0,9919
|
82
|
-
RinUI/core/__pycache__/translator.cpython-38.pyc,sha256=JAKIX3emlSjFSMZaI9sxMHJ19not7gEIyvmvSRjJeoo,1423
|
83
|
-
RinUI/hooks/__init__.py,sha256=zer67JRQ-h9uvQmutYU2Us5oBjSJnBVzgR1Sl_5aPF0,77
|
84
|
-
RinUI/hooks/hook-RinUI.py,sha256=9DW9x8zgpEsZpaAAUW-0LE_B69od1wBcUviVRnrAfMI,119
|
85
|
-
RinUI/languages/en_US.qm,sha256=mVm1ELFdGJN4SK0TAH4wRZ0umTxn5WS62_wY-TVpXIU,16
|
86
|
-
RinUI/languages/en_US.ts,sha256=G4-J3m4FUwJRhYvJg9aqS4MYXVu6TQV_GvPBAJVrV-0,6804
|
87
|
-
RinUI/languages/zh_CN.qm,sha256=bQCxv9OfHL8xJbBZYXPZvpPJ6v_czMeVin5Kdnn7LSA,1697
|
88
|
-
RinUI/languages/zh_CN.ts,sha256=fKkkNsnSkFtPXpDiHWhoNnbmGGbTnGz81lrZYeSFVaE,6578
|
89
|
-
RinUI/themes/dark.qml,sha256=qg9pEbkoGGLgVdIaNR-9uC7vdvwPLayPGtwB0OXS_Ss,5938
|
90
|
-
RinUI/themes/light.qml,sha256=FhRke_jaFZPUon-slfVgPThp8eSgtnZMnUR53BaFcHQ,5886
|
91
|
-
RinUI/themes/qmldir,sha256=cpBqpZ_vfZyOwWzAT9MEEVruyJkSWi3RVV6Qj0RVrGI,125
|
92
|
-
RinUI/themes/theme.qml,sha256=zuMlMOn80U738znBR8_KCeMKYMXt3dKuvGreAm58FKI,4396
|
93
|
-
RinUI/themes/utils.qml,sha256=g7rx6WS_F4zZJneUIVCHv_4RUT4Hdh01XllZlAh1lfI,1712
|
94
|
-
RinUI/utils/Animation.qml,sha256=Z--MRYr-bZqKX_QyZ4c0Z74g72i0k7aPzTBEUhTfiGo,146
|
95
|
-
RinUI/utils/FloatLayer.qml,sha256=W-TaM8gCt6YWU46V_pDonyxNMlR-iEcg27FMl-FYV58,3323
|
96
|
-
RinUI/utils/FontIconLoader.qml,sha256=DEUH-GlcI5q0PbCsvsvq1t-uPzEZo0-A-Gqt5t1eoFg,307
|
97
|
-
RinUI/utils/Position.qml,sha256=4Qu7JzQyB0emw4Va23pfZyBKKHQYkfWdueZIoPGMbCI,275
|
98
|
-
RinUI/utils/Severity.qml,sha256=sBSSK2pKjUmI-l-jxPJHnV9OX5NIiC1B1j8dn7iV5hg,168
|
99
|
-
RinUI/utils/Typography.qml,sha256=uScq2PNHI_pW-vcyp2SDLL1pkMyspD_ffrx0Qg2Ha7c,249
|
100
|
-
RinUI/utils/qmldir,sha256=0tTlmbIgNtRRNgqAJ2IAloJIAtwO6lXITV3ciaWLpCs,193
|
101
|
-
RinUI/windows/CtrlBtn.qml,sha256=R4c_ZQxv2SFNnuOsCnq0_dH3THEQkZVl41ZFkVG8IR0,3390
|
102
|
-
RinUI/windows/FluentPage.qml,sha256=UBhBZcQbO5hJNmXlOLlDVWSVYBlu73wa1CAKlxgjows,2840
|
103
|
-
RinUI/windows/FluentWindow.qml,sha256=FBsc2Wl16oS4KIuN4d0uMP35jSluq2y4l0DZnfWVdoM,856
|
104
|
-
RinUI/windows/FluentWindowBase.qml,sha256=kt9AG1_ACilx5cMhjMQ6OfBz8EPMjwOJBV5xJ04_mNo,4783
|
105
|
-
RinUI/windows/TitleBar.qml,sha256=ssCtj9QtXAQuL7zVn87KlaSnhiEUgMvsiwPBKVZeGpU,3877
|
106
|
-
RinUI/windows/qmldir,sha256=8zVLwFf2mHV3QKp13YnR6OkayRpZl7bHpxSdRdBthK4,212
|
107
|
-
RinUI/windows/window/ApplicationWindow.qml,sha256=sVgqmUEk0bh0QfmF5trs7-W3FaEdYUIYDx7Tv5Pdeww,196
|
108
|
-
RinUI/windows/window/Window.qml,sha256=hQ6aPNv37my-A1cB3EwrxKr8HeYzQqv2LFlS8XCdqto,3603
|
109
|
-
rinui-0.1.0.data/data/LICENSE,sha256=5tTvyBFn2yeDG5EfIkn4FRJKHXNKRomDVGxssfzXtqg,1084
|
110
|
-
rinui-0.1.0.data/data/README.md,sha256=3dpuJ-ecybFTR247R9DKVnEwLQ18eZqvfd8qU1NfQRI,3187
|
111
|
-
rinui-0.1.0.dist-info/LICENSE,sha256=5tTvyBFn2yeDG5EfIkn4FRJKHXNKRomDVGxssfzXtqg,1084
|
112
|
-
rinui-0.1.0.dist-info/METADATA,sha256=2JIDWunumAlaynIUVkVq0W-WldAhkRl3n07QqQ-yTI0,3725
|
113
|
-
rinui-0.1.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
114
|
-
rinui-0.1.0.dist-info/entry_points.txt,sha256=taxuZYCggoQa2LPubwcurQYRjBRC4cNYOjWaqOYZVxw,54
|
115
|
-
rinui-0.1.0.dist-info/top_level.txt,sha256=vKKjXBXEw5OFRIzTxZWUC5ZOj0CK5e3atbymBB4eJ6w,6
|
116
|
-
rinui-0.1.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|