PyQt5-ElaWidgetTools 0.3__cp37-abi3-win32.whl → 0.4__cp37-abi3-win32.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.pyd +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
|
|
@@ -452,6 +452,12 @@ class ElaNavigationRouterType:
|
|
|
452
452
|
ObjectInvalid = 0x0001
|
|
453
453
|
FunctionNameInvalid = 0x0002
|
|
454
454
|
|
|
455
|
+
class RouteMode(IntEnum):
|
|
456
|
+
BackValid = 0x0000
|
|
457
|
+
BackInvalid = 0x0001
|
|
458
|
+
ForwardValid = 0x0002
|
|
459
|
+
ForwardInvalid = 0x0003
|
|
460
|
+
|
|
455
461
|
|
|
456
462
|
class ElaEventBusType:
|
|
457
463
|
class EventBusReturnType(IntEnum):
|
|
@@ -507,6 +513,11 @@ class ElaWindowType:
|
|
|
507
513
|
Flip = 0x0003
|
|
508
514
|
Blur = 0x0004
|
|
509
515
|
|
|
516
|
+
class PaintMode(IntEnum):
|
|
517
|
+
Normal = 0x0000
|
|
518
|
+
Pixmap = 0x0001
|
|
519
|
+
Movie = 0x0002
|
|
520
|
+
|
|
510
521
|
|
|
511
522
|
class ElaSpinBoxType:
|
|
512
523
|
class ButtonMode(IntEnum):
|
|
@@ -516,14 +527,6 @@ class ElaSpinBoxType:
|
|
|
516
527
|
PMSide = 0x0003
|
|
517
528
|
|
|
518
529
|
|
|
519
|
-
class ElaNavigationRouterType:
|
|
520
|
-
class RouteMode(IntEnum):
|
|
521
|
-
BackValid = 0x0000
|
|
522
|
-
BackInvalid = 0x0001
|
|
523
|
-
ForwardValid = 0x0002
|
|
524
|
-
ForwardInvalid = 0x0003
|
|
525
|
-
|
|
526
|
-
|
|
527
530
|
class ElaIconType:
|
|
528
531
|
class IconName(IntEnum):
|
|
529
532
|
None_ = 0x0
|
|
@@ -4300,11 +4303,6 @@ class ElaImageCard(QWidget):
|
|
|
4300
4303
|
...
|
|
4301
4304
|
def getIsPreserveAspectCrop(self) -> bool:
|
|
4302
4305
|
...
|
|
4303
|
-
pMaximumAspectRatioChanged = pyqtSignal()
|
|
4304
|
-
def setMaximumAspectRatio(self, MaximumAspectRatio: float) -> None:
|
|
4305
|
-
...
|
|
4306
|
-
def getMaximumAspectRatio(self) -> float:
|
|
4307
|
-
...
|
|
4308
4306
|
def __init__(self, parent: QWidget = None) -> None:
|
|
4309
4307
|
...
|
|
4310
4308
|
def __del__(self) -> None:
|
|
@@ -5733,6 +5731,11 @@ class ElaWindow(QMainWindow):
|
|
|
5733
5731
|
...
|
|
5734
5732
|
def getStackSwitchMode(self) -> ElaWindowType.StackSwitchMode:
|
|
5735
5733
|
...
|
|
5734
|
+
pWindowPaintModeChanged = pyqtSignal()
|
|
5735
|
+
def setWindowPaintMode(self, WindowPaintMode: ElaWindowType.PaintMode) -> None:
|
|
5736
|
+
...
|
|
5737
|
+
def getWindowPaintMode(self) -> ElaWindowType.PaintMode:
|
|
5738
|
+
...
|
|
5736
5739
|
def nativeEvent(self, eventType: QByteArray, message: None, result: long) -> bool:
|
|
5737
5740
|
...
|
|
5738
5741
|
def __init__(self, parent: QWidget = None) -> None:
|
|
@@ -5813,6 +5816,18 @@ class ElaWindow(QMainWindow):
|
|
|
5813
5816
|
...
|
|
5814
5817
|
def getWindowButtonFlags(self) -> ElaAppBarType.ButtonFlags:
|
|
5815
5818
|
...
|
|
5819
|
+
def setWindowMoviePath(self, themeMode: ElaThemeType.ThemeMode, moviePath: str) -> None:
|
|
5820
|
+
...
|
|
5821
|
+
def getWindowMoviePath(self, themeMode: ElaThemeType.ThemeMode) -> str:
|
|
5822
|
+
...
|
|
5823
|
+
def setWindowPixmap(self, themeMode: ElaThemeType.ThemeMode, pixmap: QPixmap) -> None:
|
|
5824
|
+
...
|
|
5825
|
+
def getWindowPixmap(self, themeMode: ElaThemeType.ThemeMode) -> QPixmap:
|
|
5826
|
+
...
|
|
5827
|
+
def setWindowMovieRate(self, rate: float) -> None:
|
|
5828
|
+
...
|
|
5829
|
+
def getWindowMovieRate(self) -> float:
|
|
5830
|
+
...
|
|
5816
5831
|
def closeWindow(self) -> None:
|
|
5817
5832
|
...
|
|
5818
5833
|
userInfoCardClicked = pyqtSignal()
|
|
@@ -5826,3 +5841,5 @@ class ElaWindow(QMainWindow):
|
|
|
5826
5841
|
...
|
|
5827
5842
|
def createPopupMenu(self) -> QMenu:
|
|
5828
5843
|
...
|
|
5844
|
+
def paintEvent(self, event: QPaintEvent) -> None:
|
|
5845
|
+
...
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
PyQt5ElaWidgetTools/ElaWidgetTools.pyd,sha256=giNdGFYnpVFVjnN3olCxYrwy69sx__mUFF1PNfurJ2E,5870592
|
|
2
|
+
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=DLzY6pOWZalKyMhCuZhUhahlHlzY3Bd1QCpLplil4B4,189959
|
|
3
|
+
PyQt5ElaWidgetTools/__init__.py,sha256=IWd4L_B7d78eI8dSRO9muUBY-MwFLnyklHjPOS3hxjg,495
|
|
4
|
+
pyqt5_elawidgettools-0.4.dist-info/METADATA,sha256=Uz-2w3tEBJI65Rrrw5B1t6xy7GWMc1t7jw-6q4AMPzk,340
|
|
5
|
+
pyqt5_elawidgettools-0.4.dist-info/WHEEL,sha256=g_6Gl9NcaXybq12bnhi_KDXjwHDbOvoiCEgWzPCDJbY,95
|
|
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.pyd,sha256=f6JS9WQn7lNdrDSznou7vSeUHJ7x-40oRy457rwd_kU,5865472
|
|
2
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=mo9olDPaIeR5COhskruRRKYaNOovG2ZIfoqDQpz3YZA,189272
|
|
3
|
-
PyQt5ElaWidgetTools/__init__.py,sha256=IWd4L_B7d78eI8dSRO9muUBY-MwFLnyklHjPOS3hxjg,495
|
|
4
|
-
pyqt5_elawidgettools-0.3.dist-info/METADATA,sha256=2zqDeSgBthw1I1bnNuQ1eavbZf1IimN7etM7U3gK4Oc,340
|
|
5
|
-
pyqt5_elawidgettools-0.3.dist-info/WHEEL,sha256=g_6Gl9NcaXybq12bnhi_KDXjwHDbOvoiCEgWzPCDJbY,95
|
|
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
|