cesarview 0.3.6__py310-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.
- cesarview/__init__.pyc +0 -0
- cesarview/base/__init__.pyc +0 -0
- cesarview/base/__init__.pyi +2 -0
- cesarview/base/cs_base_alignment.pyc +0 -0
- cesarview/base/cs_base_alignment.pyi +14 -0
- cesarview/base/cs_base_box.pyc +0 -0
- cesarview/base/cs_base_box.pyi +17 -0
- cesarview/base/cs_base_btn.pyc +0 -0
- cesarview/base/cs_base_btn.pyi +27 -0
- cesarview/base/cs_base_dialog.pyc +0 -0
- cesarview/base/cs_base_dialog.pyi +21 -0
- cesarview/base/cs_base_widget.pyc +0 -0
- cesarview/base/cs_base_widget.pyi +6 -0
- cesarview/helper/__init__.pyc +0 -0
- cesarview/helper/__init__.pyi +2 -0
- cesarview/helper/cs_colors.pyc +0 -0
- cesarview/helper/cs_colors.pyi +8 -0
- cesarview/resources/svg/check.svg +3 -0
- cesarview/resources/svg/edit.svg +3 -0
- cesarview/resources/svg/email.svg +4 -0
- cesarview/resources/svg/search.svg +4 -0
- cesarview/resources/svg/star.svg +3 -0
- cesarview/resources/svg/trash.svg +4 -0
- cesarview/theme/__init__.pyc +0 -0
- cesarview/theme/__init__.pyi +6 -0
- cesarview/theme/cs_theme_item.pyc +0 -0
- cesarview/theme/cs_theme_item.pyi +12 -0
- cesarview/theme/cs_themes.pyc +0 -0
- cesarview/theme/cs_themes.pyi +187 -0
- cesarview/theme/default_config.pyc +0 -0
- cesarview/theme/default_config.pyi +4 -0
- cesarview/widgets/__init__.pyc +0 -0
- cesarview/widgets/__init__.pyi +2 -0
- cesarview/widgets/cs_btn.pyc +0 -0
- cesarview/widgets/cs_btn.pyi +26 -0
- cesarview-0.3.6.dist-info/METADATA +16 -0
- cesarview-0.3.6.dist-info/RECORD +39 -0
- cesarview-0.3.6.dist-info/WHEEL +5 -0
- cesarview-0.3.6.dist-info/top_level.txt +2 -0
cesarview/__init__.pyc
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Stub file for type hints
|
|
2
|
+
|
|
3
|
+
import enum
|
|
4
|
+
from typing import Any
|
|
5
|
+
from PySide6.QtCore import Qt
|
|
6
|
+
from PySide6.QtWidgets import QWidget
|
|
7
|
+
from cesarview.base.cs_base_box import CSBaseBox
|
|
8
|
+
|
|
9
|
+
class CSBaseAlignment:
|
|
10
|
+
class Direction:
|
|
11
|
+
VERTICAL: int
|
|
12
|
+
HORIZONTAL: int
|
|
13
|
+
|
|
14
|
+
def __init__(self, *widgets): ...
|
|
Binary file
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Stub file for type hints
|
|
2
|
+
|
|
3
|
+
import enum
|
|
4
|
+
from typing import Any
|
|
5
|
+
from PySide6.QtCore import Qt
|
|
6
|
+
from PySide6.QtWidgets import QWidget, QSizePolicy
|
|
7
|
+
from PySide6.QtWidgets import QHBoxLayout, QVBoxLayout
|
|
8
|
+
from cesarview.base.cs_base_widget import CSBaseWidget
|
|
9
|
+
|
|
10
|
+
class CSBaseBox:
|
|
11
|
+
class Direction:
|
|
12
|
+
VERTICAL: int
|
|
13
|
+
HORIZONTAL: int
|
|
14
|
+
|
|
15
|
+
def __init__(self, *widgets): ...
|
|
16
|
+
def showEvent(self, event): ...
|
|
17
|
+
def init_first_event(self, event): ...
|
|
Binary file
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Stub file for type hints
|
|
2
|
+
|
|
3
|
+
import enum
|
|
4
|
+
from typing import Callable, Any
|
|
5
|
+
from PySide6.QtWidgets import QPushButton
|
|
6
|
+
from PySide6.QtCore import QSize, Qt
|
|
7
|
+
from PySide6.QtGui import QIcon, QFont
|
|
8
|
+
from cesarview.helper.cs_colors import CSColors
|
|
9
|
+
from cesarview.theme import CSTheme
|
|
10
|
+
|
|
11
|
+
class CSBaseBtn:
|
|
12
|
+
class SHAPE:
|
|
13
|
+
PLAIN: str
|
|
14
|
+
ROUND: str
|
|
15
|
+
CIRCLE: str
|
|
16
|
+
|
|
17
|
+
class STYLE:
|
|
18
|
+
DEFAULT: str
|
|
19
|
+
PRIMARY: str
|
|
20
|
+
SUCCESS: str
|
|
21
|
+
INFO: str
|
|
22
|
+
WARNING: str
|
|
23
|
+
DANGER: str
|
|
24
|
+
|
|
25
|
+
def __init__(self, name: str = None, callback: Callable[[str], any] = None, width: int = 40, height: int = 40, bg_color: str = None, bg_hover_color: str = None, bg_pressed_color: str = None, text_size: int = None, text_weight: QFont.Weight = None, text_color: str = None, text_hover_color: str = None, text_pressed_color: str = None, bordered: bool = False, border_color: str = None, border_hover_color: str = None, border_pressed_color: str = None, border_radius: int = None, border_width: int = None, border_style: str = 'solid', shape: SHAPE = SHAPE.PLAIN, style: STYLE = None, icon_path: str = None, icon_right: bool = False, disabled: bool = False, both: bool = False, parent: Any = None): ...
|
|
26
|
+
def setup(self): ...
|
|
27
|
+
def _on_btn_clicked(self): ...
|
|
Binary file
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Stub file for type hints
|
|
2
|
+
|
|
3
|
+
from typing import Union, Callable, Any
|
|
4
|
+
from PySide6.QtWidgets import QDialog, QLabel, QPushButton, QLayout
|
|
5
|
+
from PySide6.QtWidgets import QHBoxLayout, QVBoxLayout, QFrame
|
|
6
|
+
from PySide6.QtWidgets import QWidget, QGraphicsDropShadowEffect
|
|
7
|
+
from PySide6.QtCore import Qt
|
|
8
|
+
from PySide6.QtGui import QFont, QColor
|
|
9
|
+
from cesarview.helper.cs_colors import CSColors
|
|
10
|
+
from cesarview.theme import CSTheme
|
|
11
|
+
|
|
12
|
+
class CSBaseDialog:
|
|
13
|
+
def __init__(self, width: int = None, height: int = None, bg_color: str = None, border_radius: int = None, border: str = None, margin: int = None, padding: int = None, shadowed: bool = True, title: str = None, title_color: str = None, title_close: str = None, title_close_hided: bool = False, title_close_callback: Callable[[], bool] = None, title_font: str = None, title_font_size: str = None, content: Union[QLayout, QWidget] = None, footer_btn_width: int = None, footer_btn_height: int = None, footer_btn_font_size: int = None, footer_btn_font_weight: int = None, footer_left_btn_text: str = None, footer_left_btn_text_color: str = None, footer_left_btn_bg_color: str = None, footer_left_btn_border: str = None, footer_left_btn_border_radius: int = None, footer_left_btn_callback: Callable[[], bool] = None, footer_left_btn_hided: bool = False, footer_right_btn_text: str = None, footer_right_btn_text_color: str = None, footer_right_btn_bg_color: str = None, footer_right_btn_border: str = None, footer_right_btn_border_radius: int = None, footer_right_btn_callback: Callable[[], bool] = None, footer_right_btn_hided: bool = False, parent: Any = None): ...
|
|
14
|
+
def setup(self): ...
|
|
15
|
+
def set_content_layout(self, layout: QLayout): ...
|
|
16
|
+
def set_content_widget(self, widget: QWidget): ...
|
|
17
|
+
def mousePressEvent(self, event): ...
|
|
18
|
+
def mouseMoveEvent(self, event): ...
|
|
19
|
+
def _on_btn_clicked_title(self): ...
|
|
20
|
+
def _on_btn_clicked_left(self): ...
|
|
21
|
+
def _on_btn_clicked_right(self): ...
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Stub file for type hints
|
|
2
|
+
|
|
3
|
+
from dataclasses import dataclass
|
|
4
|
+
from typing import Dict, ClassVar, List, Any
|
|
5
|
+
|
|
6
|
+
class CSThemeItem:
|
|
7
|
+
_fields: ClassVar[List[str]]
|
|
8
|
+
def __init__(self, dat: Dict[str, Any] = None, default_dat: Dict[str, Any] = None): ...
|
|
9
|
+
def __getattr__(self, name: str): ...
|
|
10
|
+
def __setattr__(self, name: str, value: Any): ...
|
|
11
|
+
def to_dict(self): ...
|
|
12
|
+
def values(self): ...
|
|
Binary file
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
# Stub file for type hints
|
|
2
|
+
|
|
3
|
+
from typing import Dict, Optional, Any
|
|
4
|
+
from cesarview.theme import default_config
|
|
5
|
+
from cesarview.theme.cs_theme_item import CSThemeItem
|
|
6
|
+
|
|
7
|
+
class CSThemes:
|
|
8
|
+
def __init__(self, data: Optional[Dict] = None): ...
|
|
9
|
+
def custom_theme(self, custom_data: Dict): ...
|
|
10
|
+
def use_default_theme(self): ...
|
|
11
|
+
def _create_theme_item(self, dat: Dict): ...
|
|
12
|
+
def get_theme_item(self): ...
|
|
13
|
+
def color_brand(self): ...
|
|
14
|
+
def color_brand_secondary(self): ...
|
|
15
|
+
def color_brand_thirdly(self): ...
|
|
16
|
+
def color_brand_minimum(self): ...
|
|
17
|
+
def color_bg_brand(self): ...
|
|
18
|
+
def color_bg_brand_secondary(self): ...
|
|
19
|
+
def color_bg_brand_thirdly(self): ...
|
|
20
|
+
def color_bg_brand_minimum(self): ...
|
|
21
|
+
def color_bg_black(self): ...
|
|
22
|
+
def color_bg_black_secondary(self): ...
|
|
23
|
+
def color_bg_black_thirdly(self): ...
|
|
24
|
+
def color_bg_black_minimum(self): ...
|
|
25
|
+
def color_bg_white(self): ...
|
|
26
|
+
def color_bg_white_secondary(self): ...
|
|
27
|
+
def color_bg_white_thirdly(self): ...
|
|
28
|
+
def color_bg_white_minimum(self): ...
|
|
29
|
+
def color_bg_transparent(self): ...
|
|
30
|
+
def color_bg_transparent_secondary(self): ...
|
|
31
|
+
def color_bg_transparent_thirdly(self): ...
|
|
32
|
+
def color_bg_transparent_minimum(self): ...
|
|
33
|
+
def color_text(self): ...
|
|
34
|
+
def color_text_secondary(self): ...
|
|
35
|
+
def color_text_thirdly(self): ...
|
|
36
|
+
def color_text_minimum(self): ...
|
|
37
|
+
def color_border(self): ...
|
|
38
|
+
def color_border_secondary(self): ...
|
|
39
|
+
def color_border_thirdly(self): ...
|
|
40
|
+
def color_border_minimum(self): ...
|
|
41
|
+
def color_black(self): ...
|
|
42
|
+
def color_black_secondary(self): ...
|
|
43
|
+
def color_black_thirdly(self): ...
|
|
44
|
+
def color_black_minimum(self): ...
|
|
45
|
+
def color_white(self): ...
|
|
46
|
+
def color_white_secondary(self): ...
|
|
47
|
+
def color_white_thirdly(self): ...
|
|
48
|
+
def color_white_minimum(self): ...
|
|
49
|
+
def color_red(self): ...
|
|
50
|
+
def color_red_secondary(self): ...
|
|
51
|
+
def color_red_thirdly(self): ...
|
|
52
|
+
def color_red_minimum(self): ...
|
|
53
|
+
def color_blue(self): ...
|
|
54
|
+
def color_blue_secondary(self): ...
|
|
55
|
+
def color_blue_thirdly(self): ...
|
|
56
|
+
def color_blue_minimum(self): ...
|
|
57
|
+
def color_green(self): ...
|
|
58
|
+
def color_green_secondary(self): ...
|
|
59
|
+
def color_green_thirdly(self): ...
|
|
60
|
+
def color_green_minimum(self): ...
|
|
61
|
+
def color_orange(self): ...
|
|
62
|
+
def color_orange_secondary(self): ...
|
|
63
|
+
def color_orange_thirdly(self): ...
|
|
64
|
+
def color_orange_minimum(self): ...
|
|
65
|
+
def color_gray(self): ...
|
|
66
|
+
def color_gray_secondary(self): ...
|
|
67
|
+
def color_gray_thirdly(self): ...
|
|
68
|
+
def color_gray_minimum(self): ...
|
|
69
|
+
def color_default(self): ...
|
|
70
|
+
def color_default_text(self): ...
|
|
71
|
+
def color_default_border(self): ...
|
|
72
|
+
def color_primary(self): ...
|
|
73
|
+
def color_primary_text(self): ...
|
|
74
|
+
def color_primary_border(self): ...
|
|
75
|
+
def color_success(self): ...
|
|
76
|
+
def color_success_text(self): ...
|
|
77
|
+
def color_success_border(self): ...
|
|
78
|
+
def color_info(self): ...
|
|
79
|
+
def color_info_text(self): ...
|
|
80
|
+
def color_info_border(self): ...
|
|
81
|
+
def color_warning(self): ...
|
|
82
|
+
def color_warning_text(self): ...
|
|
83
|
+
def color_warning_border(self): ...
|
|
84
|
+
def color_danger(self): ...
|
|
85
|
+
def color_danger_text(self): ...
|
|
86
|
+
def color_danger_border(self): ...
|
|
87
|
+
def color_transparent_0(self): ...
|
|
88
|
+
def color_transparent_5(self): ...
|
|
89
|
+
def color_transparent_10(self): ...
|
|
90
|
+
def color_transparent_15(self): ...
|
|
91
|
+
def color_transparent_20(self): ...
|
|
92
|
+
def color_transparent_25(self): ...
|
|
93
|
+
def color_transparent_30(self): ...
|
|
94
|
+
def color_transparent_35(self): ...
|
|
95
|
+
def color_transparent_40(self): ...
|
|
96
|
+
def color_transparent_45(self): ...
|
|
97
|
+
def color_transparent_50(self): ...
|
|
98
|
+
def color_transparent_55(self): ...
|
|
99
|
+
def color_transparent_60(self): ...
|
|
100
|
+
def color_transparent_65(self): ...
|
|
101
|
+
def color_transparent_70(self): ...
|
|
102
|
+
def color_transparent_75(self): ...
|
|
103
|
+
def color_transparent_80(self): ...
|
|
104
|
+
def color_transparent_85(self): ...
|
|
105
|
+
def color_transparent_90(self): ...
|
|
106
|
+
def color_transparent_95(self): ...
|
|
107
|
+
def color_transparent_100(self): ...
|
|
108
|
+
def color_transparent(self): ...
|
|
109
|
+
def font_super(self): ...
|
|
110
|
+
def font_large(self): ...
|
|
111
|
+
def font_medium(self): ...
|
|
112
|
+
def font_small(self): ...
|
|
113
|
+
def font_mini(self): ...
|
|
114
|
+
def divider_super(self): ...
|
|
115
|
+
def divider_large(self): ...
|
|
116
|
+
def divider_medium(self): ...
|
|
117
|
+
def divider_small(self): ...
|
|
118
|
+
def divider_mini(self): ...
|
|
119
|
+
def line_height_super(self): ...
|
|
120
|
+
def line_height_large(self): ...
|
|
121
|
+
def line_height_medium(self): ...
|
|
122
|
+
def line_height_small(self): ...
|
|
123
|
+
def line_height_no(self): ...
|
|
124
|
+
def border_width_super(self): ...
|
|
125
|
+
def border_width_large(self): ...
|
|
126
|
+
def border_width_medium(self): ...
|
|
127
|
+
def border_width_small(self): ...
|
|
128
|
+
def border_width_no(self): ...
|
|
129
|
+
def icon_large(self): ...
|
|
130
|
+
def icon_medium(self): ...
|
|
131
|
+
def icon_small(self): ...
|
|
132
|
+
def icon_mini(self): ...
|
|
133
|
+
def width_large(self): ...
|
|
134
|
+
def width_medium(self): ...
|
|
135
|
+
def width_small(self): ...
|
|
136
|
+
def width_mini(self): ...
|
|
137
|
+
def height_large(self): ...
|
|
138
|
+
def height_medium(self): ...
|
|
139
|
+
def height_small(self): ...
|
|
140
|
+
def height_mini(self): ...
|
|
141
|
+
def width_btn_large(self): ...
|
|
142
|
+
def width_btn_medium(self): ...
|
|
143
|
+
def width_btn_small(self): ...
|
|
144
|
+
def width_btn_mini(self): ...
|
|
145
|
+
def height_btn_large(self): ...
|
|
146
|
+
def height_btn_medium(self): ...
|
|
147
|
+
def height_btn_small(self): ...
|
|
148
|
+
def height_btn_mini(self): ...
|
|
149
|
+
def width_input_large(self): ...
|
|
150
|
+
def width_input_medium(self): ...
|
|
151
|
+
def width_input_small(self): ...
|
|
152
|
+
def width_input_mini(self): ...
|
|
153
|
+
def height_input_large(self): ...
|
|
154
|
+
def height_input_medium(self): ...
|
|
155
|
+
def height_input_small(self): ...
|
|
156
|
+
def height_input_mini(self): ...
|
|
157
|
+
def border_radius_super(self): ...
|
|
158
|
+
def border_radius_large(self): ...
|
|
159
|
+
def border_radius_medium(self): ...
|
|
160
|
+
def border_radius_small(self): ...
|
|
161
|
+
def border_radius_no(self): ...
|
|
162
|
+
def dialog_width(self): ...
|
|
163
|
+
def dialog_height(self): ...
|
|
164
|
+
def dialog_bg_color(self): ...
|
|
165
|
+
def dialog_border_radius(self): ...
|
|
166
|
+
def dialog_border(self): ...
|
|
167
|
+
def dialog_margin(self): ...
|
|
168
|
+
def dialog_padding(self): ...
|
|
169
|
+
def dialog_title(self): ...
|
|
170
|
+
def dialog_title_color(self): ...
|
|
171
|
+
def dialog_title_close(self): ...
|
|
172
|
+
def dialog_title_font(self): ...
|
|
173
|
+
def dialog_title_font_size(self): ...
|
|
174
|
+
def dialog_footer_btn_width(self): ...
|
|
175
|
+
def dialog_footer_btn_height(self): ...
|
|
176
|
+
def dialog_footer_btn_font_size(self): ...
|
|
177
|
+
def dialog_footer_btn_font_weight(self): ...
|
|
178
|
+
def dialog_footer_left_btn_text(self): ...
|
|
179
|
+
def dialog_footer_left_btn_text_color(self): ...
|
|
180
|
+
def dialog_footer_left_btn_bg_color(self): ...
|
|
181
|
+
def dialog_footer_left_btn_border(self): ...
|
|
182
|
+
def dialog_footer_left_btn_border_radius(self): ...
|
|
183
|
+
def dialog_footer_right_btn_text(self): ...
|
|
184
|
+
def dialog_footer_right_btn_text_color(self): ...
|
|
185
|
+
def dialog_footer_right_btn_bg_color(self): ...
|
|
186
|
+
def dialog_footer_right_btn_border(self): ...
|
|
187
|
+
def dialog_footer_right_btn_border_radius(self): ...
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Stub file for type hints
|
|
2
|
+
|
|
3
|
+
import enum
|
|
4
|
+
import os
|
|
5
|
+
from typing import Callable, Any
|
|
6
|
+
from PySide6.QtGui import QFont
|
|
7
|
+
from cesarview.base.cs_base_btn import CSBaseBtn
|
|
8
|
+
|
|
9
|
+
class CSBtn:
|
|
10
|
+
class ICON:
|
|
11
|
+
SEARCH: str
|
|
12
|
+
CHECK: str
|
|
13
|
+
EDIT: str
|
|
14
|
+
EMAIL: str
|
|
15
|
+
STAR: str
|
|
16
|
+
TRASH: str
|
|
17
|
+
|
|
18
|
+
class Plain:
|
|
19
|
+
def __init__(self, name: str = None, callback: Callable[[str], any] = None, width: int = 120, height: int = 40, text_size: int = None, text_weight: QFont.Weight = None, text_color: str = None, text_hover_color: str = None, text_pressed_color: str = None, bg_color: str = None, bg_hover_color: str = None, bg_pressed_color: str = None, bordered: bool = False, border_color: str = None, border_hover_color: str = None, border_pressed_color: str = None, border_width: int = None, border_style: str = 'solid', disabled: bool = False, style: 'CSBtn.STYLE' = None, icon_path: str = None, icon: 'CSBtn.ICON' = None, both: bool = False, icon_right: bool = False, parent: Any = None): ...
|
|
20
|
+
|
|
21
|
+
class Circle:
|
|
22
|
+
def __init__(self, name: str = None, callback: Callable[[str], any] = None, width: int = 40, text_size: int = None, text_weight: QFont.Weight = None, text_color: str = None, text_hover_color: str = None, text_pressed_color: str = None, bg_color: str = None, bg_hover_color: str = None, bg_pressed_color: str = None, bordered: bool = False, border_color: str = None, border_hover_color: str = None, border_pressed_color: str = None, border_radius: int = None, border_width: int = None, border_style: str = 'solid', disabled: bool = False, style: 'CSBtn.STYLE' = None, icon_path: str = None, icon: 'CSBtn.ICON' = None, both: bool = False, icon_right: bool = False, parent: Any = None): ...
|
|
23
|
+
|
|
24
|
+
class Round:
|
|
25
|
+
def __init__(self, name: str = None, callback: Callable[[str], any] = None, width: int = 120, height: int = 40, text_size: int = None, text_weight: QFont.Weight = None, text_color: str = None, text_hover_color: str = None, text_pressed_color: str = None, bg_color: str = None, bg_hover_color: str = None, bg_pressed_color: str = None, bordered: bool = False, border_color: str = None, border_hover_color: str = None, border_pressed_color: str = None, border_radius: int = None, border_width: int = None, border_style: str = 'solid', disabled: bool = False, style: 'CSBtn.STYLE' = None, icon_path: str = None, icon: 'CSBtn.ICON' = None, both: bool = False, icon_right: bool = False, parent: Any = None): ...
|
|
26
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: cesarview
|
|
3
|
+
Version: 0.3.6
|
|
4
|
+
Summary: cesar view
|
|
5
|
+
Author: cesar
|
|
6
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
7
|
+
Classifier: Intended Audience :: Developers
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
14
|
+
Classifier: Topic :: Utilities
|
|
15
|
+
|
|
16
|
+
cesar view
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
cesarview/__init__.pyc,sha256=3svXij9SNmOWF4hsU61wlAOuk_nhfBbXskwTHrnfWGE,143
|
|
2
|
+
cesarview/base/__init__.pyc,sha256=Nra0QZ--fas0qAhzmYFbrMx7xfEdIX0Eq7TXJhwNTnE,148
|
|
3
|
+
cesarview/base/__init__.pyi,sha256=P6VW3RK8UzuR9BQJ2VdXO7OUBAOI_3JQdjgsmmDY6m0,28
|
|
4
|
+
cesarview/base/cs_base_alignment.pyc,sha256=dnej90rM51SZ6fqJaYVcOVKyDx2PMjoUO2gULUuZdO0,1424
|
|
5
|
+
cesarview/base/cs_base_alignment.pyi,sha256=WLPnsqDep6xJtgzgbkKdEI9mcUPkrJHSTmjOzACB5ao,310
|
|
6
|
+
cesarview/base/cs_base_box.pyc,sha256=pHsnuTp_LkOAORx3C6VE0NLDfcurR_jTHdyM52Lr3cQ,2014
|
|
7
|
+
cesarview/base/cs_base_box.pyi,sha256=OeDWvM7btvl88WL2WNoQm6WtBwVPEhjha9_S6Izd5Tk,457
|
|
8
|
+
cesarview/base/cs_base_btn.pyc,sha256=Mf8Tlq5nm8cKis0McrdRzXp1mjPSIp4fCm3U3Lr7GqQ,9233
|
|
9
|
+
cesarview/base/cs_base_btn.pyi,sha256=SZUBkuq90dCc2vpvD8KzAQ3bEPavhLym_9T2KnWAIgA,1272
|
|
10
|
+
cesarview/base/cs_base_dialog.pyc,sha256=Fp8rknWOUcDm-kRurs3F_3TVYlNC9rtZ3SnycVWaGpo,11504
|
|
11
|
+
cesarview/base/cs_base_dialog.pyi,sha256=1bZyu8gyXRl_i9E4oj04xq4vQtDym6zpokQHMDqXKnU,1944
|
|
12
|
+
cesarview/base/cs_base_widget.pyc,sha256=9eXW1ieCXY3bfAn6TpkcQqk9fmMPOYO58HUQDyy34Nc,784
|
|
13
|
+
cesarview/base/cs_base_widget.pyi,sha256=SSScPXE029Bh5PSj0nWnoL1NP5vVyYyx6NehAkwHXsw,154
|
|
14
|
+
cesarview/helper/__init__.pyc,sha256=0XInUADW8Ui1FrF4AqioJTM0GFx1FEGahuKy1LDG0os,150
|
|
15
|
+
cesarview/helper/__init__.pyi,sha256=P6VW3RK8UzuR9BQJ2VdXO7OUBAOI_3JQdjgsmmDY6m0,28
|
|
16
|
+
cesarview/helper/cs_colors.pyc,sha256=KJ2tAUub2U6dNlhFcpmUp4nw4XkFjPWaPyQw7aYtXUo,1560
|
|
17
|
+
cesarview/helper/cs_colors.pyi,sha256=xwKSB6pfAa-K1_0PdPCpBQQ9z9O5xvw4_c9rMkzA9Ps,207
|
|
18
|
+
cesarview/resources/svg/check.svg,sha256=HCsXzUMDLfWiUqQNFzQ0D2ZVDX6pkH373vtUzpMaDkI,151
|
|
19
|
+
cesarview/resources/svg/edit.svg,sha256=C-OzLy9RPa4k5-rZTEx6gHNGEbH_QLZw6RUEFRpuWQA,183
|
|
20
|
+
cesarview/resources/svg/email.svg,sha256=umWpbWqW8D2A3o8EDk3L5reS5UpDNZH3NfeGRfhbFaQ,243
|
|
21
|
+
cesarview/resources/svg/search.svg,sha256=406SPR4-OxQ7Lm--1BrbpONVqryzLUs5cvlCh_7rJM8,199
|
|
22
|
+
cesarview/resources/svg/star.svg,sha256=F_bx4_4Ez-kKgn6d7iwzv8X24tqnr2RQ_BLYSv974zs,230
|
|
23
|
+
cesarview/resources/svg/trash.svg,sha256=DbFGYjYCrxBZTtSNQ1ojczmCTtogeBaShU-wWu_m-dk,244
|
|
24
|
+
cesarview/theme/__init__.pyc,sha256=BFbYJwN6LGkVMVNyEOx5UAC9GNguHlKwAdE4FUPlGN8,270
|
|
25
|
+
cesarview/theme/__init__.pyi,sha256=5s5nV9Pxz1KhxDFGlNXtcfurflgs4G8Ryni525d8rVM,90
|
|
26
|
+
cesarview/theme/cs_theme_item.pyc,sha256=Nzj2vNTRO_azas7jY29HKMaVmhb7ismb4pC2eOeaVL8,5198
|
|
27
|
+
cesarview/theme/cs_theme_item.pyi,sha256=wL3uWcBTWDgDfaLbxM4xS8RpT7Kt8mO8EpcYJ7-iK6M,401
|
|
28
|
+
cesarview/theme/cs_themes.pyc,sha256=Tp604UKgv4WmmNR3742MnkM8Z7xlpYQRBcL19n5Cv4c,26683
|
|
29
|
+
cesarview/theme/cs_themes.pyi,sha256=fdoVor8MiJTa1Lfme-CVgo_lbkBQrmoAoZ6usS_32oA,7061
|
|
30
|
+
cesarview/theme/default_config.pyc,sha256=-8vcaoZSWEwV02CJj8kCQHrhKiirraCeUE_HeG1EW8I,6665
|
|
31
|
+
cesarview/theme/default_config.pyi,sha256=7ai3_AcZ9hXbPXcGXK0KfBvGUInUg-djrJBZPLadsms,38
|
|
32
|
+
cesarview/widgets/__init__.pyc,sha256=k-Nu7OJFK5inYVswDzGHX_sTcbLvBxBCiWf9CSNli9A,151
|
|
33
|
+
cesarview/widgets/__init__.pyi,sha256=P6VW3RK8UzuR9BQJ2VdXO7OUBAOI_3JQdjgsmmDY6m0,28
|
|
34
|
+
cesarview/widgets/cs_btn.pyc,sha256=NTO6MfmRO_F3lAbyAPEW_6-CkFVZyA0Ix6X5EY3HNSw,5268
|
|
35
|
+
cesarview/widgets/cs_btn.pyi,sha256=lOTlo-dV7BPMfxKTHYUYjPUtt6QFfmkMhIwwmy-H-s8,2462
|
|
36
|
+
cesarview-0.3.6.dist-info/METADATA,sha256=7OaHqSgVX6SFM09hAdVExOa2hyXX57KVrqb9BeDDces,543
|
|
37
|
+
cesarview-0.3.6.dist-info/WHEEL,sha256=TN2i7VvkmXmUUu8A99Ln5iQ5x9XpMHaR0vKzqkafwi0,93
|
|
38
|
+
cesarview-0.3.6.dist-info/top_level.txt,sha256=rE986lllkR_ccVZOytwLtXBXFqrh521jMQTn5_mIK8I,16
|
|
39
|
+
cesarview-0.3.6.dist-info/RECORD,,
|