RinUI 0.0.9__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.
Files changed (102) hide show
  1. RinUI/__init__.py +4 -0
  2. RinUI/__pycache__/__init__.cpython-38.pyc +0 -0
  3. RinUI/assets/fonts/FluentSystemIcons-Index.js +5256 -0
  4. RinUI/assets/fonts/FluentSystemIcons-Resizable.ttf +0 -0
  5. RinUI/assets/img/default_app_icon.png +0 -0
  6. RinUI/components/Base.qml +79 -0
  7. RinUI/components/BasicInput/Button.qml +148 -0
  8. RinUI/components/BasicInput/CheckBox.qml +99 -0
  9. RinUI/components/BasicInput/ComboBox.qml +160 -0
  10. RinUI/components/BasicInput/DropDownButton.qml +21 -0
  11. RinUI/components/BasicInput/Hyperlink.qml +18 -0
  12. RinUI/components/BasicInput/RadioButton.qml +95 -0
  13. RinUI/components/BasicInput/Slider.qml +212 -0
  14. RinUI/components/BasicInput/Switch.qml +102 -0
  15. RinUI/components/BasicInput/ToggleButton.qml +11 -0
  16. RinUI/components/BasicInput/ToolButton.qml +31 -0
  17. RinUI/components/ContextMenu.qml +184 -0
  18. RinUI/components/DateAndTime/PickerView.qml +217 -0
  19. RinUI/components/DateAndTime/TimePicker.qml +115 -0
  20. RinUI/components/DialogsAndFlyouts/Dialog.qml +106 -0
  21. RinUI/components/DialogsAndFlyouts/DialogButtonBox.qml +47 -0
  22. RinUI/components/DialogsAndFlyouts/Flyout.qml +144 -0
  23. RinUI/components/DialogsAndFlyouts/Popup.qml +106 -0
  24. RinUI/components/FocusIndicator.qml +33 -0
  25. RinUI/components/IconWidget.qml +52 -0
  26. RinUI/components/Indicator.qml +90 -0
  27. RinUI/components/Layout/Expander.qml +160 -0
  28. RinUI/components/Layout/SettingExpander.qml +67 -0
  29. RinUI/components/Layout/SettingItem.qml +71 -0
  30. RinUI/components/ListAndCollections/Clip.qml +22 -0
  31. RinUI/components/ListAndCollections/Frame.qml +44 -0
  32. RinUI/components/ListAndCollections/ListView.qml +105 -0
  33. RinUI/components/ListAndCollections/ListViewDelegate.qml +83 -0
  34. RinUI/components/ListAndCollections/SettingCard.qml +73 -0
  35. RinUI/components/ListAndCollections/TableView.qml +82 -0
  36. RinUI/components/ListAndCollections/TableViewDelegate.qml +89 -0
  37. RinUI/components/MenusAndToolbars/Menu.qml +149 -0
  38. RinUI/components/MenusAndToolbars/MenuBar.qml +43 -0
  39. RinUI/components/MenusAndToolbars/MenuItem.qml +119 -0
  40. RinUI/components/MenusAndToolbars/MenuItemGroup.qml +43 -0
  41. RinUI/components/MenusAndToolbars/MenuSeparator.qml +14 -0
  42. RinUI/components/MenusAndToolbars/ToolSeparator.qml +17 -0
  43. RinUI/components/Navigation/ErrorPage.qml +48 -0
  44. RinUI/components/Navigation/NavigationBar.qml +179 -0
  45. RinUI/components/Navigation/NavigationItem.qml +193 -0
  46. RinUI/components/Navigation/NavigationSubItem.qml +103 -0
  47. RinUI/components/Navigation/NavigationView.qml +210 -0
  48. RinUI/components/Navigation/SelectorBar.qml +58 -0
  49. RinUI/components/ScrollBar.qml +163 -0
  50. RinUI/components/ScrollView.qml +13 -0
  51. RinUI/components/Shadow.qml +48 -0
  52. RinUI/components/StatusAndInfo/InfoBadge.qml +78 -0
  53. RinUI/components/StatusAndInfo/InfoBar.qml +246 -0
  54. RinUI/components/StatusAndInfo/ProgressBar.qml +127 -0
  55. RinUI/components/StatusAndInfo/Toast.qml +237 -0
  56. RinUI/components/StatusAndInfo/ToolTip.qml +93 -0
  57. RinUI/components/Text/SpinBox.qml +134 -0
  58. RinUI/components/Text/Text.qml +44 -0
  59. RinUI/components/Text/TextField.qml +94 -0
  60. RinUI/components/Text/TextInput.qml +29 -0
  61. RinUI/components/Utils/Blur.qml +42 -0
  62. RinUI/components/qmldir +76 -0
  63. RinUI/config/rin_ui.json +8 -0
  64. RinUI/core/__init__.py +3 -0
  65. RinUI/core/__pycache__/__init__.cpython-38.pyc +0 -0
  66. RinUI/core/__pycache__/config.cpython-38.pyc +0 -0
  67. RinUI/core/__pycache__/launcher.cpython-38.pyc +0 -0
  68. RinUI/core/__pycache__/theme.cpython-38.pyc +0 -0
  69. RinUI/core/config.py +109 -0
  70. RinUI/core/launcher.py +144 -0
  71. RinUI/core/theme.py +342 -0
  72. RinUI/hooks/__init__.py +3 -0
  73. RinUI/hooks/hook-RinUI.py +3 -0
  74. RinUI/qmldir +92 -0
  75. RinUI/themes/dark.qml +137 -0
  76. RinUI/themes/light.qml +137 -0
  77. RinUI/themes/qmldir +7 -0
  78. RinUI/themes/theme.qml +126 -0
  79. RinUI/themes/utils.qml +28 -0
  80. RinUI/utils/Animation.qml +12 -0
  81. RinUI/utils/FloatLayer.qml +123 -0
  82. RinUI/utils/FontIconLoader.qml +14 -0
  83. RinUI/utils/Position.qml +19 -0
  84. RinUI/utils/Severity.qml +13 -0
  85. RinUI/utils/Typography.qml +17 -0
  86. RinUI/utils/qmldir +5 -0
  87. RinUI/windows/CtrlBtn.qml +119 -0
  88. RinUI/windows/FluentPage.qml +92 -0
  89. RinUI/windows/FluentWindow.qml +32 -0
  90. RinUI/windows/FluentWindowBase.qml +157 -0
  91. RinUI/windows/TitleBar.qml +132 -0
  92. RinUI/windows/qmldir +8 -0
  93. RinUI/windows/window/ApplicationWindow.qml +9 -0
  94. RinUI/windows/window/Window.qml +112 -0
  95. rinui-0.0.9.data/data/LICENSE +21 -0
  96. rinui-0.0.9.data/data/README.md +90 -0
  97. rinui-0.0.9.dist-info/LICENSE +21 -0
  98. rinui-0.0.9.dist-info/METADATA +105 -0
  99. rinui-0.0.9.dist-info/RECORD +102 -0
  100. rinui-0.0.9.dist-info/WHEEL +5 -0
  101. rinui-0.0.9.dist-info/entry_points.txt +2 -0
  102. rinui-0.0.9.dist-info/top_level.txt +1 -0
@@ -0,0 +1,90 @@
1
+ <div align="center">
2
+ <h1>RinUI</h1>
3
+ <p>A Fluent Design-like UI library for Qt Quick (QML)</p>
4
+
5
+ **English** | [中文](./docs/README_zhCN.MD)
6
+
7
+ </div>
8
+
9
+ > [!TIP]
10
+ > This project is still in development and not ready for production use! (This project has even not a logo yet)
11
+ >
12
+ > Of course, you are welcome to contribute to this project.
13
+
14
+ ## 📄 Introduction
15
+
16
+ RinUI is a UI library similar to Fluent Design for Qt Quick (QML), RinUI will provide high-quality components and practical functions.
17
+ With simple configuration, you can quickly develop elegant UI interfaces in the Fluent style.
18
+
19
+ ### Features
20
+ * Elegant Fluent Design controls (WIP)
21
+ * Dark and light mode, automatic switching
22
+ * Compatible with original QML control names
23
+ * Multi-language support (WIP)
24
+ * Theme system (WIP)
25
+ * Development documentation, [preview](https://ui.rinlit.cn/) now. (WIP)
26
+
27
+ ### Screenshots
28
+ ![Screenshot 1](/docs/img/shot_1.png)
29
+
30
+ <details style="text-align: center">
31
+ <summary>More screenshots...</summary>
32
+
33
+ ![img.png](/docs/img/img.png)
34
+ ![img_1.png](/docs/img/img_1.png)
35
+ ![img_2.png](/docs/img/img_2.png)
36
+ ![img_3.png](/docs/img/img_3.png)
37
+ </details>
38
+
39
+ ## 🪄 Usage
40
+
41
+ You can install RinUI via pip: (coming soon, but now you can install via test-pypi)
42
+ ```bash
43
+ pip install RinUI # if RinUI in pypi
44
+
45
+ # ↓ Test PyPI
46
+ pip install PySide6 darkdetect
47
+ # There is no Release for these two packages in TestPypi. When RinUI is released to PyPi, this step can be omitted.
48
+ pip install -i https://test.pypi.org/simple/ RinUI --no-deps
49
+ ```
50
+
51
+ Import RinUI in your QML file:
52
+ ```qmllang
53
+ import RinUI
54
+ ```
55
+
56
+ You also can view the demo in the source code, like this:
57
+ ```bash
58
+ cd examples
59
+ python gallery.py
60
+ ```
61
+
62
+ You also can move the RinUI folder to anywhere in your project's directory.
63
+
64
+ > [!NOTE]
65
+ > The documentation is still in progress!!
66
+ > You can view the source code to learn more about the components and themes at the moment.
67
+
68
+ Now you can learn more about RinUI components and themes in [the online documentation](https://ui.rinlit.cn/).
69
+
70
+ ## 🙌 Acknowledgements
71
+ ### Resources
72
+ - [PySide6 & Qt Quick](https://www.qt.io/)
73
+ - [Fluent Design System](https://fluent2.microsoft.design/)
74
+ - [Fluent UI System Icons](https://github.com/microsoft/fluentui-system-icons/)
75
+ - [WinUI 3 Gallery](https://github.com/microsoft/WinUI-Gallery)
76
+
77
+ ### Contributors
78
+ Contributions are welcome! Please read the [contribution guidelines](./CONTRIBUTING.md) before submitting a pull request.
79
+
80
+ Thanks to the great people who contributed to this project.
81
+ [![Contributors](http://contrib.nn.ci/api?repo=rinlit-233-shiroko/Rin-UI)](https://github.com/RinLit-233-shiroko/Rin-UI/graphs/contributors)
82
+
83
+ ## 📜 License
84
+ This project is licensed under the **MIT** License, you can learn more about it in the [license file](./LICENSE).
85
+
86
+ Copyright © 2025 RinLit
87
+
88
+ ##
89
+
90
+ This is an experimental project by Rin as a newcomer. Welcome to suggest and contribute to this project. ❤️
@@ -0,0 +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.
@@ -0,0 +1,105 @@
1
+ Metadata-Version: 2.1
2
+ Name: RinUI
3
+ Version: 0.0.9
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==227; sys_platform == "win32"
15
+
16
+ <div align="center">
17
+ <h1>RinUI</h1>
18
+ <p>A Fluent Design-like UI library for Qt Quick (QML)</p>
19
+
20
+ **English** | [中文](./docs/README_zhCN.MD)
21
+
22
+ </div>
23
+
24
+ > [!TIP]
25
+ > This project is still in development and not ready for production use! (This project has even not a logo yet)
26
+ >
27
+ > Of course, you are welcome to contribute to this project.
28
+
29
+ ## 📄 Introduction
30
+
31
+ RinUI is a UI library similar to Fluent Design for Qt Quick (QML), RinUI will provide high-quality components and practical functions.
32
+ With simple configuration, you can quickly develop elegant UI interfaces in the Fluent style.
33
+
34
+ ### Features
35
+ * Elegant Fluent Design controls (WIP)
36
+ * Dark and light mode, automatic switching
37
+ * Compatible with original QML control names
38
+ * Multi-language support (WIP)
39
+ * Theme system (WIP)
40
+ * Development documentation, [preview](https://ui.rinlit.cn/) now. (WIP)
41
+
42
+ ### Screenshots
43
+ ![Screenshot 1](/docs/img/shot_1.png)
44
+
45
+ <details style="text-align: center">
46
+ <summary>More screenshots...</summary>
47
+
48
+ ![img.png](/docs/img/img.png)
49
+ ![img_1.png](/docs/img/img_1.png)
50
+ ![img_2.png](/docs/img/img_2.png)
51
+ ![img_3.png](/docs/img/img_3.png)
52
+ </details>
53
+
54
+ ## 🪄 Usage
55
+
56
+ You can install RinUI via pip: (coming soon, but now you can install via test-pypi)
57
+ ```bash
58
+ pip install RinUI # if RinUI in pypi
59
+
60
+ # ↓ Test PyPI
61
+ pip install PySide6 darkdetect
62
+ # There is no Release for these two packages in TestPypi. When RinUI is released to PyPi, this step can be omitted.
63
+ pip install -i https://test.pypi.org/simple/ RinUI --no-deps
64
+ ```
65
+
66
+ Import RinUI in your QML file:
67
+ ```qmllang
68
+ import RinUI
69
+ ```
70
+
71
+ You also can view the demo in the source code, like this:
72
+ ```bash
73
+ cd examples
74
+ python gallery.py
75
+ ```
76
+
77
+ You also can move the RinUI folder to anywhere in your project's directory.
78
+
79
+ > [!NOTE]
80
+ > The documentation is still in progress!!
81
+ > You can view the source code to learn more about the components and themes at the moment.
82
+
83
+ Now you can learn more about RinUI components and themes in [the online documentation](https://ui.rinlit.cn/).
84
+
85
+ ## 🙌 Acknowledgements
86
+ ### Resources
87
+ - [PySide6 & Qt Quick](https://www.qt.io/)
88
+ - [Fluent Design System](https://fluent2.microsoft.design/)
89
+ - [Fluent UI System Icons](https://github.com/microsoft/fluentui-system-icons/)
90
+ - [WinUI 3 Gallery](https://github.com/microsoft/WinUI-Gallery)
91
+
92
+ ### Contributors
93
+ Contributions are welcome! Please read the [contribution guidelines](./CONTRIBUTING.md) before submitting a pull request.
94
+
95
+ Thanks to the great people who contributed to this project.
96
+ [![Contributors](http://contrib.nn.ci/api?repo=rinlit-233-shiroko/Rin-UI)](https://github.com/RinLit-233-shiroko/Rin-UI/graphs/contributors)
97
+
98
+ ## 📜 License
99
+ This project is licensed under the **MIT** License, you can learn more about it in the [license file](./LICENSE).
100
+
101
+ Copyright © 2025 RinLit
102
+
103
+ ##
104
+
105
+ This is an experimental project by Rin as a newcomer. Welcome to suggest and contribute to this project. ❤️
@@ -0,0 +1,102 @@
1
+ RinUI/__init__.py,sha256=Nl2GyJthlwetZo1lceCM_ONPAjp9-oGVd9EgamdTQyA,69
2
+ RinUI/qmldir,sha256=m2jK729cnWNe-Kn9ppOcSWy0KH1Y2_Poym2RxI1OPdI,3181
3
+ RinUI/__pycache__/__init__.cpython-38.pyc,sha256=BD69Qj3x4AzO9vVspY2mwz62BRUzS1px8JgieZLSJ3I,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=hegCgNlRFhVCTBhrY3ESzPeMWlkZOe5IgXsHWeTArPQ,93928
7
+ RinUI/components/Base.qml,sha256=YifNpJR3iywAhbWkzGciOF-fyL_eb6YohrgLjDOxTkA,2439
8
+ RinUI/components/ContextMenu.qml,sha256=8pLS_fXVFn7uFfx3gz0Bd1SvPMXryeYv1GnU3VlLTiI,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=kY3wIuLTN11isQlhzPUPJdDEfGhkoaLdOS62Own-Le4,5660
13
+ RinUI/components/ScrollView.qml,sha256=S6GuZm9lptsZduH-xVDGKkS3BqGqi8EmyiBFvbVFAgM,275
14
+ RinUI/components/Shadow.qml,sha256=YmVgAPAIY69ur57EDMDKMihx6ucI973SWyff01L8r0s,1638
15
+ RinUI/components/qmldir,sha256=EBA8y0QoGI9-ed0DAl-q8AY_m3CAMH76OVob0Xx2rug,2197
16
+ RinUI/components/BasicInput/Button.qml,sha256=vyi214-iYvp82u5pg2xHWJwjKifZKSt2NXTuvYlRFHg,5430
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/RadioButton.qml,sha256=lck3xdKO778ukm5jjHflGNXnDsxdBPMHTisD9GnQYS0,3129
22
+ RinUI/components/BasicInput/Slider.qml,sha256=XJ0gXqHrBffF0PNDpx7TWxFTyZ7NAOxLU8Hg4c3XV9Y,7157
23
+ RinUI/components/BasicInput/Switch.qml,sha256=6CMQKKAs7tdIT_bdTplUk50bS7ywunYtqfT2v2sOhrI,3359
24
+ RinUI/components/BasicInput/ToggleButton.qml,sha256=y3bm0agSYT1v4Jzs_-JgAFNf5b_oBzliUyL6QChM6rA,210
25
+ RinUI/components/BasicInput/ToolButton.qml,sha256=jz2-ddMGdFQIoPHCwOIVbYsp6mRwZgAGrowNHs8P3QU,953
26
+ RinUI/components/DateAndTime/PickerView.qml,sha256=rE7XbDhWKsERYFIgFGk5hsWz-5nR8pH3siotoyjS7Jg,7040
27
+ RinUI/components/DateAndTime/TimePicker.qml,sha256=KKOVLvKPm5moYIZaRxesRzi9v2pAK5xypCIfDda7N_Q,3844
28
+ RinUI/components/DialogsAndFlyouts/Dialog.qml,sha256=KIIswm78ly6BK37wfb5mg26CjpGr-ehp0YdTpo902io,2759
29
+ RinUI/components/DialogsAndFlyouts/DialogButtonBox.qml,sha256=60vE_o-3IgF8Ol0OkobJTeWYE4xaxiD1jFoKN1ZARXg,1174
30
+ RinUI/components/DialogsAndFlyouts/Flyout.qml,sha256=aGx7qBCLzfxQSBBGHRMGr8frrsYZefo508i1mI83YpI,4187
31
+ RinUI/components/DialogsAndFlyouts/Popup.qml,sha256=U0TXPlU22EObTrNsXw2FI4s8MruWP0w4T6lSqOEYTLc,3252
32
+ RinUI/components/Layout/Expander.qml,sha256=XUm0YSy0cMS6wJxstxpzVXXddY0iIridpeQxZc8gxyU,4859
33
+ RinUI/components/Layout/SettingExpander.qml,sha256=e4xDD6ndlQDkBBJyp7AtMdpfkVpzRnesJPzIWVlMBx0,1950
34
+ RinUI/components/Layout/SettingItem.qml,sha256=azdd-pLMs9WyDsztX5xfcswIHN2u_c_5gHfNSSXbxOY,2073
35
+ RinUI/components/ListAndCollections/Clip.qml,sha256=Y--dOjURRLADcDNsJEjJty0uOBgsc-o_X39IbLqhqDI,498
36
+ RinUI/components/ListAndCollections/Frame.qml,sha256=2NNPfTmsgc734hRpVv-eEQfkMT03vz28uz6xUQXliKI,1407
37
+ RinUI/components/ListAndCollections/ListView.qml,sha256=jnYhxIUMs0iMsznMWG-q8OX0c-eIpoKqif03M3OqkuE,3117
38
+ RinUI/components/ListAndCollections/ListViewDelegate.qml,sha256=AQAsrtleMO5t3601YvGEjZxIQ99zGId60rpf9G1ao-A,2183
39
+ RinUI/components/ListAndCollections/SettingCard.qml,sha256=CaR-MQnMIFjwnVM0VhI2IqSenBNtz_kGA4ExzxAjmLE,2208
40
+ RinUI/components/ListAndCollections/TableView.qml,sha256=RJZQPb4yIdcE1jUJ4iQOHDSB5l4O3s7g3oKSuRaubI0,2232
41
+ RinUI/components/ListAndCollections/TableViewDelegate.qml,sha256=lH19q3Vx9X6TYhgnRlwi7RGnAtb_k3dBbgJZlnQnEmE,2371
42
+ RinUI/components/MenusAndToolbars/Menu.qml,sha256=otaZk53Yv-A9lcWsBLz8KASXYb1nd3_JPpPBy5xs4DM,4567
43
+ RinUI/components/MenusAndToolbars/MenuBar.qml,sha256=HR1pSTqklkLFiGkOTGxgRO9WFtsKRlxAT1sSzqYVP7Q,1097
44
+ RinUI/components/MenusAndToolbars/MenuItem.qml,sha256=bxQqzotp3DhBS7MiWjqGFinF8UD1v0-yB8qWrRp-pmI,3661
45
+ RinUI/components/MenusAndToolbars/MenuItemGroup.qml,sha256=ywDv4KypNoTQbiDTeIedBj7Dfvcy9jdFtwwK7hSaozE,1057
46
+ RinUI/components/MenusAndToolbars/MenuSeparator.qml,sha256=Z2G339bFrwOzRpWSqqahjmgJL5u-k-sw3g1uAHXerxQ,270
47
+ RinUI/components/MenusAndToolbars/ToolSeparator.qml,sha256=rZXXNnvKw3yZVptj1bOronPDkiYCId1ffAt-a3t-ea4,430
48
+ RinUI/components/Navigation/ErrorPage.qml,sha256=uQ3UBby1vP6-SBjw1_7aU6hRNXmcqNdBKzC-EuB6a7U,1087
49
+ RinUI/components/Navigation/NavigationBar.qml,sha256=RR8PjDNl0lqfwcvnx0EvooAnVx4db6Q8o1L03ghzdlE,5075
50
+ RinUI/components/Navigation/NavigationItem.qml,sha256=YzveFBTT4I-NVF40NSVD3GCOgP0qdK3aWMA_3IGxuP0,5947
51
+ RinUI/components/Navigation/NavigationSubItem.qml,sha256=Xap5EX41SWPOIzvd9FmTR4-zJIwHTe2OvestK_j_jso,3041
52
+ RinUI/components/Navigation/NavigationView.qml,sha256=iXGJmQmkvwdRuDV7F0cFVq2Z2J0yrp7eZYmaTFDr82k,7029
53
+ RinUI/components/Navigation/SelectorBar.qml,sha256=ivxG2N0vHKRQ0anRRF9HFlvHlODH34ZOh_hVWuieG2E,1835
54
+ RinUI/components/StatusAndInfo/InfoBadge.qml,sha256=AmyrUwPLP62x83mFlZu6aio7DFOtVK6mKhPVMVBjpQw,2457
55
+ RinUI/components/StatusAndInfo/InfoBar.qml,sha256=Z18svV2ktCeB5xyUF0ZwgQBQ4yYYftX790DhOmFaC4Y,7557
56
+ RinUI/components/StatusAndInfo/ProgressBar.qml,sha256=RAivKVM8C3JcQFjR6VZPz0H7XqWpSPq5G9qfnh2ABmQ,3515
57
+ RinUI/components/StatusAndInfo/Toast.qml,sha256=9T8i9JswzGEXZM8CeZbwWsILEbzymy2ZaPwJEUBXXTw,7051
58
+ RinUI/components/StatusAndInfo/ToolTip.qml,sha256=js0t8IJ6bnYt8JHHMQwS49MQOhaBjLNYP_libFbZROk,2757
59
+ RinUI/components/Text/SpinBox.qml,sha256=YC1CjlHauP081qtseFQuSDNCUsCnCgtjh8nfgPqCZfU,4229
60
+ RinUI/components/Text/Text.qml,sha256=-VaPy0W4d8mE6C1crSA0ADReKdA_NlghxaS5iV_8RYg,1758
61
+ RinUI/components/Text/TextField.qml,sha256=yZeXX4TNbUEixB43uZ6X4vcpLnMplmIO1bqsFAJei1c,3160
62
+ RinUI/components/Text/TextInput.qml,sha256=dShTgTHPgZcwy4qI-fCxXtBBcR4ebkl94hipq5Nadn4,1210
63
+ RinUI/components/Utils/Blur.qml,sha256=HXChzMeBTrNUl-ZZkKN1d2s3L0Yq6b14WsvUjUpPnbY,1146
64
+ RinUI/config/rin_ui.json,sha256=rDCS0TVFt1VowGlcW_jqOM81DWwkV7S8Z5rae2p4TSk,149
65
+ RinUI/core/__init__.py,sha256=lm9MTtS7ZrvwpRDXatPehvJSnLPKnet4MY3R5T69kxM,147
66
+ RinUI/core/config.py,sha256=n8PLI_t7vpM5kbywmcNgw7tixGgIgf4p8C2eaQk2KDs,3116
67
+ RinUI/core/launcher.py,sha256=ZmVux1nluuNNM6hFnfx-txdOPL6P2Qgv2OyswXa9AhM,5164
68
+ RinUI/core/theme.py,sha256=q8vqq5LP1zlGCLMmOfNQv47qcMtoDYqm0J7HwIC74g4,11203
69
+ RinUI/core/__pycache__/__init__.cpython-38.pyc,sha256=Ih9XPQC8FCCFgiGzl8O0wFPpqhTgVXShJEhjUsytYf4,362
70
+ RinUI/core/__pycache__/config.cpython-38.pyc,sha256=CfTGNkyEFqGAKwrMboLd29BUk8Ddu6wbSF13dyoXbnE,3752
71
+ RinUI/core/__pycache__/launcher.cpython-38.pyc,sha256=hzJ8Uw3mRPAtmgCnAZ6l-Xc5xgjSPPEtBQs0OEwwVW0,5117
72
+ RinUI/core/__pycache__/theme.cpython-38.pyc,sha256=CqxoFJO4dwpFfdqWnD5FlCqMEj_xWMvayoFaQCpvf7I,10041
73
+ RinUI/hooks/__init__.py,sha256=zer67JRQ-h9uvQmutYU2Us5oBjSJnBVzgR1Sl_5aPF0,77
74
+ RinUI/hooks/hook-RinUI.py,sha256=9DW9x8zgpEsZpaAAUW-0LE_B69od1wBcUviVRnrAfMI,119
75
+ RinUI/themes/dark.qml,sha256=2SV9KS2Wj-kILefm2qHg4rcNbo99gice88MiEJcNM3I,5396
76
+ RinUI/themes/light.qml,sha256=4zcR9Xye6iSq6pSywEaOryhTRgAlHeJoEnp9YsaG5gQ,5343
77
+ RinUI/themes/qmldir,sha256=cpBqpZ_vfZyOwWzAT9MEEVruyJkSWi3RVV6Qj0RVrGI,125
78
+ RinUI/themes/theme.qml,sha256=AAviilBJ6aXBjjmc1dpSxvzAnlmYWGUTBXbMW2ee6cs,3693
79
+ RinUI/themes/utils.qml,sha256=_n1KiQYpXRKnM_D62i_CdV4dENX_2hFbSkYvsAdi24U,1264
80
+ RinUI/utils/Animation.qml,sha256=Z--MRYr-bZqKX_QyZ4c0Z74g72i0k7aPzTBEUhTfiGo,146
81
+ RinUI/utils/FloatLayer.qml,sha256=W-TaM8gCt6YWU46V_pDonyxNMlR-iEcg27FMl-FYV58,3323
82
+ RinUI/utils/FontIconLoader.qml,sha256=DEUH-GlcI5q0PbCsvsvq1t-uPzEZo0-A-Gqt5t1eoFg,307
83
+ RinUI/utils/Position.qml,sha256=4Qu7JzQyB0emw4Va23pfZyBKKHQYkfWdueZIoPGMbCI,275
84
+ RinUI/utils/Severity.qml,sha256=sBSSK2pKjUmI-l-jxPJHnV9OX5NIiC1B1j8dn7iV5hg,168
85
+ RinUI/utils/Typography.qml,sha256=uScq2PNHI_pW-vcyp2SDLL1pkMyspD_ffrx0Qg2Ha7c,249
86
+ RinUI/utils/qmldir,sha256=0tTlmbIgNtRRNgqAJ2IAloJIAtwO6lXITV3ciaWLpCs,193
87
+ RinUI/windows/CtrlBtn.qml,sha256=R4c_ZQxv2SFNnuOsCnq0_dH3THEQkZVl41ZFkVG8IR0,3390
88
+ RinUI/windows/FluentPage.qml,sha256=UBhBZcQbO5hJNmXlOLlDVWSVYBlu73wa1CAKlxgjows,2840
89
+ RinUI/windows/FluentWindow.qml,sha256=3GkWomOiS1sGPcQ7SQZxl65v-nIIbgig_M2tjy-WQq0,890
90
+ RinUI/windows/FluentWindowBase.qml,sha256=n5QW7FihFoet3tw5rzGvP4nlgw7Ql-s-A5nQHGI0xUw,4775
91
+ RinUI/windows/TitleBar.qml,sha256=nDMgvN9JDdywZX81dCwH3f90VQofhQNxVdQWEKSGZrg,3665
92
+ RinUI/windows/qmldir,sha256=8zVLwFf2mHV3QKp13YnR6OkayRpZl7bHpxSdRdBthK4,212
93
+ RinUI/windows/window/ApplicationWindow.qml,sha256=qG3nnUQ5oOZPMg-1WCmJuZOuk5ZXomqMvWKnQcVA9Jg,193
94
+ RinUI/windows/window/Window.qml,sha256=d88Y0C3-IZfWQkVxAw-9BylrDWLO7Q3VFarLPqHE_Po,3471
95
+ rinui-0.0.9.data/data/LICENSE,sha256=5tTvyBFn2yeDG5EfIkn4FRJKHXNKRomDVGxssfzXtqg,1084
96
+ rinui-0.0.9.data/data/README.md,sha256=4stfXy-NJl9PVKzPrLKGC0Id7Cqmo9nnvbmkYAYugi0,2999
97
+ rinui-0.0.9.dist-info/LICENSE,sha256=5tTvyBFn2yeDG5EfIkn4FRJKHXNKRomDVGxssfzXtqg,1084
98
+ rinui-0.0.9.dist-info/METADATA,sha256=y3-ror3R2Ip2No1G1cW-PBLYnqAr6-HFgN1SJ23N2Vo,3537
99
+ rinui-0.0.9.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
100
+ rinui-0.0.9.dist-info/entry_points.txt,sha256=taxuZYCggoQa2LPubwcurQYRjBRC4cNYOjWaqOYZVxw,54
101
+ rinui-0.0.9.dist-info/top_level.txt,sha256=vKKjXBXEw5OFRIzTxZWUC5ZOj0CK5e3atbymBB4eJ6w,6
102
+ rinui-0.0.9.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.3.2)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [pyinstaller40]
2
+ hook-dirs = RinUI.hooks:get_hook_dirs
@@ -0,0 +1 @@
1
+ RinUI