PyQt5-ElaWidgetTools 0.3.1__cp37-abi3-manylinux1_x86_64.whl → 0.5__cp37-abi3-manylinux1_x86_64.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.
Potentially problematic release.
This version of PyQt5-ElaWidgetTools might be problematic. Click here for more details.
- PyQt5ElaWidgetTools/ElaWidgetTools.abi3.so +0 -0
- PyQt5ElaWidgetTools/ElaWidgetTools.pyi +28 -19
- {pyqt5_elawidgettools-0.3.1.dist-info → pyqt5_elawidgettools-0.5.dist-info}/METADATA +1 -1
- pyqt5_elawidgettools-0.5.dist-info/RECORD +7 -0
- pyqt5_elawidgettools-0.3.1.dist-info/RECORD +0 -7
- {pyqt5_elawidgettools-0.3.1.dist-info → pyqt5_elawidgettools-0.5.dist-info}/WHEEL +0 -0
- {pyqt5_elawidgettools-0.3.1.dist-info → pyqt5_elawidgettools-0.5.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -29,18 +29,13 @@ class ElaAppBar(QWidget):
|
|
|
29
29
|
...
|
|
30
30
|
def getAppBarHeight(self) -> int:
|
|
31
31
|
...
|
|
32
|
-
pCustomWidgetMaximumWidthChanged = pyqtSignal()
|
|
33
|
-
def setCustomWidgetMaximumWidth(self, CustomWidgetMaximumWidth: int) -> None:
|
|
34
|
-
...
|
|
35
|
-
def getCustomWidgetMaximumWidth(self) -> int:
|
|
36
|
-
...
|
|
37
32
|
def __init__(self, parent: QWidget = None) -> None:
|
|
38
33
|
...
|
|
39
34
|
def __del__(self) -> None:
|
|
40
35
|
...
|
|
41
|
-
def setCustomWidget(self, customArea: ElaAppBarType.CustomArea, customWidget: QWidget) -> None:
|
|
36
|
+
def setCustomWidget(self, customArea: ElaAppBarType.CustomArea, customWidget: QWidget, hitTestObject: QObject = None, hitTestFunctionName: str = "") -> None:
|
|
42
37
|
...
|
|
43
|
-
def getCustomWidget(self) -> QWidget:
|
|
38
|
+
def getCustomWidget(self, customArea: ElaAppBarType.CustomArea) -> QWidget:
|
|
44
39
|
...
|
|
45
40
|
def setCustomMenu(self, customMenu: QMenu) -> None:
|
|
46
41
|
...
|
|
@@ -498,6 +493,11 @@ class ElaWindowType:
|
|
|
498
493
|
Flip = 0x0003
|
|
499
494
|
Blur = 0x0004
|
|
500
495
|
|
|
496
|
+
class PaintMode(IntEnum):
|
|
497
|
+
Normal = 0x0000
|
|
498
|
+
Pixmap = 0x0001
|
|
499
|
+
Movie = 0x0002
|
|
500
|
+
|
|
501
501
|
|
|
502
502
|
class ElaSpinBoxType:
|
|
503
503
|
class ButtonMode(IntEnum):
|
|
@@ -4667,11 +4667,6 @@ class ElaImageCard(QWidget):
|
|
|
4667
4667
|
...
|
|
4668
4668
|
def getIsPreserveAspectCrop(self) -> bool:
|
|
4669
4669
|
...
|
|
4670
|
-
pMaximumAspectRatioChanged = pyqtSignal()
|
|
4671
|
-
def setMaximumAspectRatio(self, MaximumAspectRatio: float) -> None:
|
|
4672
|
-
...
|
|
4673
|
-
def getMaximumAspectRatio(self) -> float:
|
|
4674
|
-
...
|
|
4675
4670
|
def __init__(self, parent: QWidget = None) -> None:
|
|
4676
4671
|
...
|
|
4677
4672
|
def __del__(self) -> None:
|
|
@@ -4833,11 +4828,6 @@ class ElaWindow(QMainWindow):
|
|
|
4833
4828
|
...
|
|
4834
4829
|
def getAppBarHeight(self) -> int:
|
|
4835
4830
|
...
|
|
4836
|
-
pCustomWidgetMaximumWidthChanged = pyqtSignal()
|
|
4837
|
-
def setCustomWidgetMaximumWidth(self, CustomWidgetMaximumWidth: int) -> None:
|
|
4838
|
-
...
|
|
4839
|
-
def getCustomWidgetMaximumWidth(self) -> int:
|
|
4840
|
-
...
|
|
4841
4831
|
pThemeChangeTimeChanged = pyqtSignal()
|
|
4842
4832
|
def setThemeChangeTime(self, ThemeChangeTime: int) -> None:
|
|
4843
4833
|
...
|
|
@@ -4878,6 +4868,11 @@ class ElaWindow(QMainWindow):
|
|
|
4878
4868
|
...
|
|
4879
4869
|
def getStackSwitchMode(self) -> ElaWindowType.StackSwitchMode:
|
|
4880
4870
|
...
|
|
4871
|
+
pWindowPaintModeChanged = pyqtSignal()
|
|
4872
|
+
def setWindowPaintMode(self, WindowPaintMode: ElaWindowType.PaintMode) -> None:
|
|
4873
|
+
...
|
|
4874
|
+
def getWindowPaintMode(self) -> ElaWindowType.PaintMode:
|
|
4875
|
+
...
|
|
4881
4876
|
def nativeEvent(self, eventType: QByteArray, message: None, result: long) -> bool:
|
|
4882
4877
|
...
|
|
4883
4878
|
def __init__(self, parent: QWidget = None) -> None:
|
|
@@ -4886,9 +4881,9 @@ class ElaWindow(QMainWindow):
|
|
|
4886
4881
|
...
|
|
4887
4882
|
def moveToCenter(self) -> None:
|
|
4888
4883
|
...
|
|
4889
|
-
def setCustomWidget(self, customArea: ElaAppBarType.CustomArea, customWidget: QWidget) -> None:
|
|
4884
|
+
def setCustomWidget(self, customArea: ElaAppBarType.CustomArea, customWidget: QWidget, hitTestObject: QObject = None, hitTestFunctionName: str = "") -> None:
|
|
4890
4885
|
...
|
|
4891
|
-
def getCustomWidget(self) -> QWidget:
|
|
4886
|
+
def getCustomWidget(self, customArea: ElaAppBarType.CustomArea) -> QWidget:
|
|
4892
4887
|
...
|
|
4893
4888
|
def setCentralCustomWidget(self, customWidget: QWidget) -> None:
|
|
4894
4889
|
...
|
|
@@ -4958,6 +4953,18 @@ class ElaWindow(QMainWindow):
|
|
|
4958
4953
|
...
|
|
4959
4954
|
def getWindowButtonFlags(self) -> ElaAppBarType.ButtonFlags:
|
|
4960
4955
|
...
|
|
4956
|
+
def setWindowMoviePath(self, themeMode: ElaThemeType.ThemeMode, moviePath: str) -> None:
|
|
4957
|
+
...
|
|
4958
|
+
def getWindowMoviePath(self, themeMode: ElaThemeType.ThemeMode) -> str:
|
|
4959
|
+
...
|
|
4960
|
+
def setWindowPixmap(self, themeMode: ElaThemeType.ThemeMode, pixmap: QPixmap) -> None:
|
|
4961
|
+
...
|
|
4962
|
+
def getWindowPixmap(self, themeMode: ElaThemeType.ThemeMode) -> QPixmap:
|
|
4963
|
+
...
|
|
4964
|
+
def setWindowMovieRate(self, rate: float) -> None:
|
|
4965
|
+
...
|
|
4966
|
+
def getWindowMovieRate(self) -> float:
|
|
4967
|
+
...
|
|
4961
4968
|
def closeWindow(self) -> None:
|
|
4962
4969
|
...
|
|
4963
4970
|
userInfoCardClicked = pyqtSignal()
|
|
@@ -4971,6 +4978,8 @@ class ElaWindow(QMainWindow):
|
|
|
4971
4978
|
...
|
|
4972
4979
|
def createPopupMenu(self) -> QMenu:
|
|
4973
4980
|
...
|
|
4981
|
+
def paintEvent(self, event: QPaintEvent) -> None:
|
|
4982
|
+
...
|
|
4974
4983
|
class ElaLog(QObject):
|
|
4975
4984
|
pLogSavePathChanged = pyqtSignal()
|
|
4976
4985
|
def setLogSavePath(self, LogSavePath: str) -> None:
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
PyQt5ElaWidgetTools/ElaWidgetTools.abi3.so,sha256=4GG8Ag7pa6qB354TnGoowA-yOz1C16TSqgxiaCTJmyY,10269816
|
|
2
|
+
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=286RB2VqITt8bngTJZ1m_4Si0t189zqpUaW0rwY4pv0,181937
|
|
3
|
+
PyQt5ElaWidgetTools/__init__.py,sha256=dD13hRL59kQWzdKKAUs4wkLNlJ33inWxYfv7Ok3pw9U,474
|
|
4
|
+
pyqt5_elawidgettools-0.5.dist-info/METADATA,sha256=k1pdN7lZnRkivl3aBZLOa1mBhTyx7Blw3qhzTzw-bTw,328
|
|
5
|
+
pyqt5_elawidgettools-0.5.dist-info/WHEEL,sha256=3CLSnNTVfJjhEPm7YpOKb1ll8emjJfjosP8kXe5WQls,107
|
|
6
|
+
pyqt5_elawidgettools-0.5.dist-info/top_level.txt,sha256=alL_FBCwnz-weR9jyimZ5V8-szI7nS7JowLiXyqMbzc,20
|
|
7
|
+
pyqt5_elawidgettools-0.5.dist-info/RECORD,,
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.abi3.so,sha256=G1vzYnZHK59uQcW6tc_tUQUh8Cm27u-r5bBkZvQcWYU,10249312
|
|
2
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=Y6XmFgtuHUb5SjAMw43PHaJWCkZwRPR-CwqDdS1ZVc8,181449
|
|
3
|
-
PyQt5ElaWidgetTools/__init__.py,sha256=dD13hRL59kQWzdKKAUs4wkLNlJ33inWxYfv7Ok3pw9U,474
|
|
4
|
-
pyqt5_elawidgettools-0.3.1.dist-info/METADATA,sha256=wmze3jnyIEGnRMypBOIFseAG-Rrakik_iXNumVaEDSw,330
|
|
5
|
-
pyqt5_elawidgettools-0.3.1.dist-info/WHEEL,sha256=3CLSnNTVfJjhEPm7YpOKb1ll8emjJfjosP8kXe5WQls,107
|
|
6
|
-
pyqt5_elawidgettools-0.3.1.dist-info/top_level.txt,sha256=alL_FBCwnz-weR9jyimZ5V8-szI7nS7JowLiXyqMbzc,20
|
|
7
|
-
pyqt5_elawidgettools-0.3.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|