PyQt5-ElaWidgetTools 0.3.1__cp37-abi3-win32.whl → 0.5__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 +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
|
|
@@ -113,18 +113,13 @@ class ElaAppBar(QWidget):
|
|
|
113
113
|
...
|
|
114
114
|
def getAppBarHeight(self) -> int:
|
|
115
115
|
...
|
|
116
|
-
pCustomWidgetMaximumWidthChanged = pyqtSignal()
|
|
117
|
-
def setCustomWidgetMaximumWidth(self, CustomWidgetMaximumWidth: int) -> None:
|
|
118
|
-
...
|
|
119
|
-
def getCustomWidgetMaximumWidth(self) -> int:
|
|
120
|
-
...
|
|
121
116
|
def __init__(self, parent: QWidget = None) -> None:
|
|
122
117
|
...
|
|
123
118
|
def __del__(self) -> None:
|
|
124
119
|
...
|
|
125
|
-
def setCustomWidget(self, customArea: ElaAppBarType.CustomArea, customWidget: QWidget) -> None:
|
|
120
|
+
def setCustomWidget(self, customArea: ElaAppBarType.CustomArea, customWidget: QWidget, hitTestObject: QObject = None, hitTestFunctionName: str = "") -> None:
|
|
126
121
|
...
|
|
127
|
-
def getCustomWidget(self) -> QWidget:
|
|
122
|
+
def getCustomWidget(self, customArea: ElaAppBarType.CustomArea) -> QWidget:
|
|
128
123
|
...
|
|
129
124
|
def setCustomMenu(self, customMenu: QMenu) -> None:
|
|
130
125
|
...
|
|
@@ -513,6 +508,11 @@ class ElaWindowType:
|
|
|
513
508
|
Flip = 0x0003
|
|
514
509
|
Blur = 0x0004
|
|
515
510
|
|
|
511
|
+
class PaintMode(IntEnum):
|
|
512
|
+
Normal = 0x0000
|
|
513
|
+
Pixmap = 0x0001
|
|
514
|
+
Movie = 0x0002
|
|
515
|
+
|
|
516
516
|
|
|
517
517
|
class ElaSpinBoxType:
|
|
518
518
|
class ButtonMode(IntEnum):
|
|
@@ -4298,11 +4298,6 @@ class ElaImageCard(QWidget):
|
|
|
4298
4298
|
...
|
|
4299
4299
|
def getIsPreserveAspectCrop(self) -> bool:
|
|
4300
4300
|
...
|
|
4301
|
-
pMaximumAspectRatioChanged = pyqtSignal()
|
|
4302
|
-
def setMaximumAspectRatio(self, MaximumAspectRatio: float) -> None:
|
|
4303
|
-
...
|
|
4304
|
-
def getMaximumAspectRatio(self) -> float:
|
|
4305
|
-
...
|
|
4306
4301
|
def __init__(self, parent: QWidget = None) -> None:
|
|
4307
4302
|
...
|
|
4308
4303
|
def __del__(self) -> None:
|
|
@@ -5686,11 +5681,6 @@ class ElaWindow(QMainWindow):
|
|
|
5686
5681
|
...
|
|
5687
5682
|
def getAppBarHeight(self) -> int:
|
|
5688
5683
|
...
|
|
5689
|
-
pCustomWidgetMaximumWidthChanged = pyqtSignal()
|
|
5690
|
-
def setCustomWidgetMaximumWidth(self, CustomWidgetMaximumWidth: int) -> None:
|
|
5691
|
-
...
|
|
5692
|
-
def getCustomWidgetMaximumWidth(self) -> int:
|
|
5693
|
-
...
|
|
5694
5684
|
pThemeChangeTimeChanged = pyqtSignal()
|
|
5695
5685
|
def setThemeChangeTime(self, ThemeChangeTime: int) -> None:
|
|
5696
5686
|
...
|
|
@@ -5731,6 +5721,11 @@ class ElaWindow(QMainWindow):
|
|
|
5731
5721
|
...
|
|
5732
5722
|
def getStackSwitchMode(self) -> ElaWindowType.StackSwitchMode:
|
|
5733
5723
|
...
|
|
5724
|
+
pWindowPaintModeChanged = pyqtSignal()
|
|
5725
|
+
def setWindowPaintMode(self, WindowPaintMode: ElaWindowType.PaintMode) -> None:
|
|
5726
|
+
...
|
|
5727
|
+
def getWindowPaintMode(self) -> ElaWindowType.PaintMode:
|
|
5728
|
+
...
|
|
5734
5729
|
def nativeEvent(self, eventType: QByteArray, message: None, result: long) -> bool:
|
|
5735
5730
|
...
|
|
5736
5731
|
def __init__(self, parent: QWidget = None) -> None:
|
|
@@ -5739,9 +5734,9 @@ class ElaWindow(QMainWindow):
|
|
|
5739
5734
|
...
|
|
5740
5735
|
def moveToCenter(self) -> None:
|
|
5741
5736
|
...
|
|
5742
|
-
def setCustomWidget(self, customArea: ElaAppBarType.CustomArea, customWidget: QWidget) -> None:
|
|
5737
|
+
def setCustomWidget(self, customArea: ElaAppBarType.CustomArea, customWidget: QWidget, hitTestObject: QObject = None, hitTestFunctionName: str = "") -> None:
|
|
5743
5738
|
...
|
|
5744
|
-
def getCustomWidget(self) -> QWidget:
|
|
5739
|
+
def getCustomWidget(self, customArea: ElaAppBarType.CustomArea) -> QWidget:
|
|
5745
5740
|
...
|
|
5746
5741
|
def setCentralCustomWidget(self, customWidget: QWidget) -> None:
|
|
5747
5742
|
...
|
|
@@ -5811,6 +5806,18 @@ class ElaWindow(QMainWindow):
|
|
|
5811
5806
|
...
|
|
5812
5807
|
def getWindowButtonFlags(self) -> ElaAppBarType.ButtonFlags:
|
|
5813
5808
|
...
|
|
5809
|
+
def setWindowMoviePath(self, themeMode: ElaThemeType.ThemeMode, moviePath: str) -> None:
|
|
5810
|
+
...
|
|
5811
|
+
def getWindowMoviePath(self, themeMode: ElaThemeType.ThemeMode) -> str:
|
|
5812
|
+
...
|
|
5813
|
+
def setWindowPixmap(self, themeMode: ElaThemeType.ThemeMode, pixmap: QPixmap) -> None:
|
|
5814
|
+
...
|
|
5815
|
+
def getWindowPixmap(self, themeMode: ElaThemeType.ThemeMode) -> QPixmap:
|
|
5816
|
+
...
|
|
5817
|
+
def setWindowMovieRate(self, rate: float) -> None:
|
|
5818
|
+
...
|
|
5819
|
+
def getWindowMovieRate(self) -> float:
|
|
5820
|
+
...
|
|
5814
5821
|
def closeWindow(self) -> None:
|
|
5815
5822
|
...
|
|
5816
5823
|
userInfoCardClicked = pyqtSignal()
|
|
@@ -5824,3 +5831,5 @@ class ElaWindow(QMainWindow):
|
|
|
5824
5831
|
...
|
|
5825
5832
|
def createPopupMenu(self) -> QMenu:
|
|
5826
5833
|
...
|
|
5834
|
+
def paintEvent(self, event: QPaintEvent) -> None:
|
|
5835
|
+
...
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
PyQt5ElaWidgetTools/ElaWidgetTools.pyd,sha256=pmffMq1MoaHJIHECaIP75zFi6DGNN9UmHoaPg9eNkCE,5873664
|
|
2
|
+
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=Ytcv3msbrKXPEXReIAIRajDbGNm9_XA-Hil6AQhkoqw,189735
|
|
3
|
+
PyQt5ElaWidgetTools/__init__.py,sha256=IWd4L_B7d78eI8dSRO9muUBY-MwFLnyklHjPOS3hxjg,495
|
|
4
|
+
pyqt5_elawidgettools-0.5.dist-info/METADATA,sha256=epQf8RlS-MisSJn3qH_MDONSRTnRhc_tCqSJZDAAT90,340
|
|
5
|
+
pyqt5_elawidgettools-0.5.dist-info/WHEEL,sha256=g_6Gl9NcaXybq12bnhi_KDXjwHDbOvoiCEgWzPCDJbY,95
|
|
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.pyd,sha256=nGzySRO4DGF9aCnC0HlHV8nhYLTUk88BkbunYUIGQbo,5867008
|
|
2
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=TSGtPup0KlJlA6ABMg6u4xlyUqkxknjpjDDj7JjOjRQ,189238
|
|
3
|
-
PyQt5ElaWidgetTools/__init__.py,sha256=IWd4L_B7d78eI8dSRO9muUBY-MwFLnyklHjPOS3hxjg,495
|
|
4
|
-
pyqt5_elawidgettools-0.3.1.dist-info/METADATA,sha256=jGXkIf-1b2D6U9ADWwWOynbKV6bCNIte_ZALPpvZMiU,342
|
|
5
|
-
pyqt5_elawidgettools-0.3.1.dist-info/WHEEL,sha256=g_6Gl9NcaXybq12bnhi_KDXjwHDbOvoiCEgWzPCDJbY,95
|
|
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
|