PyQt5-ElaWidgetTools 0.3__cp37-abi3-manylinux1_x86_64.whl → 0.4__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 +30 -13
- {pyqt5_elawidgettools-0.3.dist-info → pyqt5_elawidgettools-0.4.dist-info}/METADATA +1 -1
- pyqt5_elawidgettools-0.4.dist-info/RECORD +7 -0
- pyqt5_elawidgettools-0.3.dist-info/RECORD +0 -7
- {pyqt5_elawidgettools-0.3.dist-info → pyqt5_elawidgettools-0.4.dist-info}/WHEEL +0 -0
- {pyqt5_elawidgettools-0.3.dist-info → pyqt5_elawidgettools-0.4.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -437,6 +437,12 @@ class ElaNavigationRouterType:
|
|
|
437
437
|
ObjectInvalid = 0x0001
|
|
438
438
|
FunctionNameInvalid = 0x0002
|
|
439
439
|
|
|
440
|
+
class RouteMode(IntEnum):
|
|
441
|
+
BackValid = 0x0000
|
|
442
|
+
BackInvalid = 0x0001
|
|
443
|
+
ForwardValid = 0x0002
|
|
444
|
+
ForwardInvalid = 0x0003
|
|
445
|
+
|
|
440
446
|
|
|
441
447
|
class ElaEventBusType:
|
|
442
448
|
class EventBusReturnType(IntEnum):
|
|
@@ -492,6 +498,11 @@ class ElaWindowType:
|
|
|
492
498
|
Flip = 0x0003
|
|
493
499
|
Blur = 0x0004
|
|
494
500
|
|
|
501
|
+
class PaintMode(IntEnum):
|
|
502
|
+
Normal = 0x0000
|
|
503
|
+
Pixmap = 0x0001
|
|
504
|
+
Movie = 0x0002
|
|
505
|
+
|
|
495
506
|
|
|
496
507
|
class ElaSpinBoxType:
|
|
497
508
|
class ButtonMode(IntEnum):
|
|
@@ -501,14 +512,6 @@ class ElaSpinBoxType:
|
|
|
501
512
|
PMSide = 0x0003
|
|
502
513
|
|
|
503
514
|
|
|
504
|
-
class ElaNavigationRouterType:
|
|
505
|
-
class RouteMode(IntEnum):
|
|
506
|
-
BackValid = 0x0000
|
|
507
|
-
BackInvalid = 0x0001
|
|
508
|
-
ForwardValid = 0x0002
|
|
509
|
-
ForwardInvalid = 0x0003
|
|
510
|
-
|
|
511
|
-
|
|
512
515
|
class ElaIconType:
|
|
513
516
|
class IconName(IntEnum):
|
|
514
517
|
None_ = 0x0
|
|
@@ -4669,11 +4672,6 @@ class ElaImageCard(QWidget):
|
|
|
4669
4672
|
...
|
|
4670
4673
|
def getIsPreserveAspectCrop(self) -> bool:
|
|
4671
4674
|
...
|
|
4672
|
-
pMaximumAspectRatioChanged = pyqtSignal()
|
|
4673
|
-
def setMaximumAspectRatio(self, MaximumAspectRatio: float) -> None:
|
|
4674
|
-
...
|
|
4675
|
-
def getMaximumAspectRatio(self) -> float:
|
|
4676
|
-
...
|
|
4677
4675
|
def __init__(self, parent: QWidget = None) -> None:
|
|
4678
4676
|
...
|
|
4679
4677
|
def __del__(self) -> None:
|
|
@@ -4880,6 +4878,11 @@ class ElaWindow(QMainWindow):
|
|
|
4880
4878
|
...
|
|
4881
4879
|
def getStackSwitchMode(self) -> ElaWindowType.StackSwitchMode:
|
|
4882
4880
|
...
|
|
4881
|
+
pWindowPaintModeChanged = pyqtSignal()
|
|
4882
|
+
def setWindowPaintMode(self, WindowPaintMode: ElaWindowType.PaintMode) -> None:
|
|
4883
|
+
...
|
|
4884
|
+
def getWindowPaintMode(self) -> ElaWindowType.PaintMode:
|
|
4885
|
+
...
|
|
4883
4886
|
def nativeEvent(self, eventType: QByteArray, message: None, result: long) -> bool:
|
|
4884
4887
|
...
|
|
4885
4888
|
def __init__(self, parent: QWidget = None) -> None:
|
|
@@ -4960,6 +4963,18 @@ class ElaWindow(QMainWindow):
|
|
|
4960
4963
|
...
|
|
4961
4964
|
def getWindowButtonFlags(self) -> ElaAppBarType.ButtonFlags:
|
|
4962
4965
|
...
|
|
4966
|
+
def setWindowMoviePath(self, themeMode: ElaThemeType.ThemeMode, moviePath: str) -> None:
|
|
4967
|
+
...
|
|
4968
|
+
def getWindowMoviePath(self, themeMode: ElaThemeType.ThemeMode) -> str:
|
|
4969
|
+
...
|
|
4970
|
+
def setWindowPixmap(self, themeMode: ElaThemeType.ThemeMode, pixmap: QPixmap) -> None:
|
|
4971
|
+
...
|
|
4972
|
+
def getWindowPixmap(self, themeMode: ElaThemeType.ThemeMode) -> QPixmap:
|
|
4973
|
+
...
|
|
4974
|
+
def setWindowMovieRate(self, rate: float) -> None:
|
|
4975
|
+
...
|
|
4976
|
+
def getWindowMovieRate(self) -> float:
|
|
4977
|
+
...
|
|
4963
4978
|
def closeWindow(self) -> None:
|
|
4964
4979
|
...
|
|
4965
4980
|
userInfoCardClicked = pyqtSignal()
|
|
@@ -4973,6 +4988,8 @@ class ElaWindow(QMainWindow):
|
|
|
4973
4988
|
...
|
|
4974
4989
|
def createPopupMenu(self) -> QMenu:
|
|
4975
4990
|
...
|
|
4991
|
+
def paintEvent(self, event: QPaintEvent) -> None:
|
|
4992
|
+
...
|
|
4976
4993
|
class ElaLog(QObject):
|
|
4977
4994
|
pLogSavePathChanged = pyqtSignal()
|
|
4978
4995
|
def setLogSavePath(self, LogSavePath: str) -> None:
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
PyQt5ElaWidgetTools/ElaWidgetTools.abi3.so,sha256=qeeW3DfbQXLMDR-vnqg15u071uaa9z1oIBCUlq74pKg,10252624
|
|
2
|
+
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=2BUq_nJwMWhH0F7J0kWMLQz5koIejCiJykSk3mW4nfY,182151
|
|
3
|
+
PyQt5ElaWidgetTools/__init__.py,sha256=dD13hRL59kQWzdKKAUs4wkLNlJ33inWxYfv7Ok3pw9U,474
|
|
4
|
+
pyqt5_elawidgettools-0.4.dist-info/METADATA,sha256=vpJZXVpqibATr_BKOTmrgEf83HCWB-mxmIPW_iHkOzY,328
|
|
5
|
+
pyqt5_elawidgettools-0.4.dist-info/WHEEL,sha256=3CLSnNTVfJjhEPm7YpOKb1ll8emjJfjosP8kXe5WQls,107
|
|
6
|
+
pyqt5_elawidgettools-0.4.dist-info/top_level.txt,sha256=alL_FBCwnz-weR9jyimZ5V8-szI7nS7JowLiXyqMbzc,20
|
|
7
|
+
pyqt5_elawidgettools-0.4.dist-info/RECORD,,
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.abi3.so,sha256=udl02dHhDANHvnnlYsF4Zd5rHRXFtDrAQ6EWv8NLHJ0,10243856
|
|
2
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=PggxHDJ6WYx_oj9asrPHc_JECBts6BdGMislkeCntfQ,181481
|
|
3
|
-
PyQt5ElaWidgetTools/__init__.py,sha256=dD13hRL59kQWzdKKAUs4wkLNlJ33inWxYfv7Ok3pw9U,474
|
|
4
|
-
pyqt5_elawidgettools-0.3.dist-info/METADATA,sha256=6WOZVM32sh1xNQwNpbiJ2PEx5mknSQ8LkPTaSgTm9sA,328
|
|
5
|
-
pyqt5_elawidgettools-0.3.dist-info/WHEEL,sha256=3CLSnNTVfJjhEPm7YpOKb1ll8emjJfjosP8kXe5WQls,107
|
|
6
|
-
pyqt5_elawidgettools-0.3.dist-info/top_level.txt,sha256=alL_FBCwnz-weR9jyimZ5V8-szI7nS7JowLiXyqMbzc,20
|
|
7
|
-
pyqt5_elawidgettools-0.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|