michis-python-sammlung 0.8.1__tar.gz → 0.8.2.1__tar.gz
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.
- {michis_python_sammlung-0.8.1 → michis_python_sammlung-0.8.2.1}/PKG-INFO +1 -1
- {michis_python_sammlung-0.8.1 → michis_python_sammlung-0.8.2.1}/pyproject.toml +1 -1
- {michis_python_sammlung-0.8.1/src/michis_python_sammlung → michis_python_sammlung-0.8.2.1/src/michis_python_sammlung/pyqt}/widgets/clickable_label.py +1 -1
- {michis_python_sammlung-0.8.1/src/michis_python_sammlung → michis_python_sammlung-0.8.2.1/src/michis_python_sammlung/pyqt}/widgets/expandable_widget.py +1 -1
- {michis_python_sammlung-0.8.1 → michis_python_sammlung-0.8.2.1}/src/michis_python_sammlung.egg-info/PKG-INFO +1 -1
- {michis_python_sammlung-0.8.1 → michis_python_sammlung-0.8.2.1}/src/michis_python_sammlung.egg-info/SOURCES.txt +7 -7
- {michis_python_sammlung-0.8.1 → michis_python_sammlung-0.8.2.1}/README.md +0 -0
- {michis_python_sammlung-0.8.1 → michis_python_sammlung-0.8.2.1}/setup.cfg +0 -0
- {michis_python_sammlung-0.8.1 → michis_python_sammlung-0.8.2.1}/src/michis_python_sammlung/__init__.py +0 -0
- {michis_python_sammlung-0.8.1/src/michis_python_sammlung/pyqt → michis_python_sammlung-0.8.2.1/src/michis_python_sammlung/icons}/__init__.py +0 -0
- {michis_python_sammlung-0.8.1/src/michis_python_sammlung/pyqt/icons → michis_python_sammlung-0.8.2.1/src/michis_python_sammlung/pyqt}/__init__.py +0 -0
- {michis_python_sammlung-0.8.1 → michis_python_sammlung-0.8.2.1}/src/michis_python_sammlung/pyqt/image_paths.py +0 -0
- {michis_python_sammlung-0.8.1 → michis_python_sammlung-0.8.2.1}/src/michis_python_sammlung/pyqt/pyqt_util.py +0 -0
- {michis_python_sammlung-0.8.1/src/michis_python_sammlung → michis_python_sammlung-0.8.2.1/src/michis_python_sammlung/pyqt}/widgets/__init__.py +0 -0
- {michis_python_sammlung-0.8.1/src/michis_python_sammlung → michis_python_sammlung-0.8.2.1/src/michis_python_sammlung/pyqt}/widgets/flow_layout.py +0 -0
- {michis_python_sammlung-0.8.1/src/michis_python_sammlung → michis_python_sammlung-0.8.2.1/src/michis_python_sammlung/pyqt}/widgets/password_widget.py +0 -0
- {michis_python_sammlung-0.8.1/src/michis_python_sammlung → michis_python_sammlung-0.8.2.1/src/michis_python_sammlung/pyqt}/widgets/progress_widget.py +0 -0
- {michis_python_sammlung-0.8.1 → michis_python_sammlung-0.8.2.1}/src/michis_python_sammlung.egg-info/dependency_links.txt +0 -0
- {michis_python_sammlung-0.8.1 → michis_python_sammlung-0.8.2.1}/src/michis_python_sammlung.egg-info/requires.txt +0 -0
- {michis_python_sammlung-0.8.1 → michis_python_sammlung-0.8.2.1}/src/michis_python_sammlung.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ from numbers import Number
|
|
|
8
8
|
from typing import Callable
|
|
9
9
|
|
|
10
10
|
from PyQt6.QtGui import QImage
|
|
11
|
-
from ..
|
|
11
|
+
from ..image_paths import Image_paths
|
|
12
12
|
|
|
13
13
|
def create_alpha_mask(image: QImage | QPixmap) -> QBitmap:
|
|
14
14
|
# Ensure the image has an alpha channel
|
|
@@ -3,7 +3,7 @@ from PyQt6.QtWidgets import QWidget, QApplication, QVBoxLayout, QHBoxLayout, QLa
|
|
|
3
3
|
from PyQt6.QtGui import QTransform, QPixmap, QPainter, QPen
|
|
4
4
|
import PyQt6.sip as sip
|
|
5
5
|
|
|
6
|
-
from ..
|
|
6
|
+
from ..pyqt_util import clear_layout
|
|
7
7
|
from .clickable_label import Clickable_label, Togglable_clickable_label, Image_paths
|
|
8
8
|
|
|
9
9
|
import faulthandler
|
|
@@ -6,13 +6,13 @@ src/michis_python_sammlung.egg-info/SOURCES.txt
|
|
|
6
6
|
src/michis_python_sammlung.egg-info/dependency_links.txt
|
|
7
7
|
src/michis_python_sammlung.egg-info/requires.txt
|
|
8
8
|
src/michis_python_sammlung.egg-info/top_level.txt
|
|
9
|
+
src/michis_python_sammlung/icons/__init__.py
|
|
9
10
|
src/michis_python_sammlung/pyqt/__init__.py
|
|
10
11
|
src/michis_python_sammlung/pyqt/image_paths.py
|
|
11
12
|
src/michis_python_sammlung/pyqt/pyqt_util.py
|
|
12
|
-
src/michis_python_sammlung/pyqt/
|
|
13
|
-
src/michis_python_sammlung/widgets/
|
|
14
|
-
src/michis_python_sammlung/widgets/
|
|
15
|
-
src/michis_python_sammlung/widgets/
|
|
16
|
-
src/michis_python_sammlung/widgets/
|
|
17
|
-
src/michis_python_sammlung/widgets/
|
|
18
|
-
src/michis_python_sammlung/widgets/progress_widget.py
|
|
13
|
+
src/michis_python_sammlung/pyqt/widgets/__init__.py
|
|
14
|
+
src/michis_python_sammlung/pyqt/widgets/clickable_label.py
|
|
15
|
+
src/michis_python_sammlung/pyqt/widgets/expandable_widget.py
|
|
16
|
+
src/michis_python_sammlung/pyqt/widgets/flow_layout.py
|
|
17
|
+
src/michis_python_sammlung/pyqt/widgets/password_widget.py
|
|
18
|
+
src/michis_python_sammlung/pyqt/widgets/progress_widget.py
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|