PyQt5-ElaWidgetTools 0.2.1__cp37-abi3-manylinux1_x86_64.whl → 0.3.1__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 +32 -12
- {pyqt5_elawidgettools-0.2.1.dist-info → pyqt5_elawidgettools-0.3.1.dist-info}/METADATA +1 -1
- pyqt5_elawidgettools-0.3.1.dist-info/RECORD +7 -0
- pyqt5_elawidgettools-0.2.1.dist-info/RECORD +0 -7
- {pyqt5_elawidgettools-0.2.1.dist-info → pyqt5_elawidgettools-0.3.1.dist-info}/WHEEL +0 -0
- {pyqt5_elawidgettools-0.2.1.dist-info → pyqt5_elawidgettools-0.3.1.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):
|
|
@@ -501,14 +507,6 @@ class ElaSpinBoxType:
|
|
|
501
507
|
PMSide = 0x0003
|
|
502
508
|
|
|
503
509
|
|
|
504
|
-
class ElaNavigationRouterType:
|
|
505
|
-
class RouteMode(IntEnum):
|
|
506
|
-
BackValid = 0x0000
|
|
507
|
-
BackInvalid = 0x0001
|
|
508
|
-
ForwardValid = 0x0002
|
|
509
|
-
ForwardInvalid = 0x0003
|
|
510
|
-
|
|
511
|
-
|
|
512
510
|
class ElaIconType:
|
|
513
511
|
class IconName(IntEnum):
|
|
514
512
|
None_ = 0x0
|
|
@@ -3932,23 +3930,35 @@ class ElaInteractiveCard(QPushButton):
|
|
|
3932
3930
|
def paintEvent(self, event: QPaintEvent) -> None:
|
|
3933
3931
|
...
|
|
3934
3932
|
class ElaTabBar(QTabBar):
|
|
3933
|
+
pTabSizeChanged = pyqtSignal()
|
|
3934
|
+
def setTabSize(self, TabSize: QSize) -> None:
|
|
3935
|
+
...
|
|
3936
|
+
def getTabSize(self) -> QSize:
|
|
3937
|
+
...
|
|
3935
3938
|
def __init__(self, parent: QWidget = None) -> None:
|
|
3936
3939
|
...
|
|
3937
3940
|
def __del__(self) -> None:
|
|
3938
3941
|
...
|
|
3939
|
-
|
|
3940
|
-
|
|
3941
|
-
|
|
3942
|
-
|
|
3942
|
+
tabDragCreate = pyqtSignal(QMimeData)
|
|
3943
|
+
tabDragEnter = pyqtSignal(QMimeData)
|
|
3944
|
+
tabDragLeave = pyqtSignal(QMimeData)
|
|
3945
|
+
tabDragDrop = pyqtSignal(QMimeData)
|
|
3946
|
+
def sizeHint(self) -> QSize:
|
|
3943
3947
|
...
|
|
3944
3948
|
def mouseMoveEvent(self, event: QMouseEvent) -> None:
|
|
3945
3949
|
...
|
|
3946
3950
|
def dragEnterEvent(self, event: QDragEnterEvent) -> None:
|
|
3947
3951
|
...
|
|
3952
|
+
def dragMoveEvent(self, event: QDragMoveEvent) -> None:
|
|
3953
|
+
...
|
|
3954
|
+
def dragLeaveEvent(self, event: QDragLeaveEvent) -> None:
|
|
3955
|
+
...
|
|
3948
3956
|
def dropEvent(self, event: QDropEvent) -> None:
|
|
3949
3957
|
...
|
|
3950
3958
|
def wheelEvent(self, event: QWheelEvent) -> None:
|
|
3951
3959
|
...
|
|
3960
|
+
def paintEvent(self, event: QPaintEvent) -> None:
|
|
3961
|
+
...
|
|
3952
3962
|
class ElaReminderCard(QPushButton):
|
|
3953
3963
|
pBorderRadiusChanged = pyqtSignal()
|
|
3954
3964
|
def setBorderRadius(self, BorderRadius: int) -> None:
|
|
@@ -4176,6 +4186,16 @@ class ElaTabWidget(QTabWidget):
|
|
|
4176
4186
|
...
|
|
4177
4187
|
def getIsTabTransparent(self) -> bool:
|
|
4178
4188
|
...
|
|
4189
|
+
pIsContainerAcceptDropsChanged = pyqtSignal()
|
|
4190
|
+
def setIsContainerAcceptDrops(self, IsContainerAcceptDrops: bool) -> None:
|
|
4191
|
+
...
|
|
4192
|
+
def getIsContainerAcceptDrops(self) -> bool:
|
|
4193
|
+
...
|
|
4194
|
+
pTabSizeChanged = pyqtSignal()
|
|
4195
|
+
def setTabSize(self, TabSize: QSize) -> None:
|
|
4196
|
+
...
|
|
4197
|
+
def getTabSize(self) -> QSize:
|
|
4198
|
+
...
|
|
4179
4199
|
def __init__(self, parent: QWidget = None) -> None:
|
|
4180
4200
|
...
|
|
4181
4201
|
def __del__(self) -> None:
|
|
@@ -0,0 +1,7 @@
|
|
|
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,,
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.abi3.so,sha256=BxSF4r1eza4KzglAoBxnqDZ3XYWh1KoP03CcViNU5Pc,10203664
|
|
2
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=nuYt0FCW3Rn1QPE4jkuvjrqgQ8uHx5OP3gS2IaNtlNk,180753
|
|
3
|
-
PyQt5ElaWidgetTools/__init__.py,sha256=dD13hRL59kQWzdKKAUs4wkLNlJ33inWxYfv7Ok3pw9U,474
|
|
4
|
-
pyqt5_elawidgettools-0.2.1.dist-info/METADATA,sha256=Hqw68IQJHsoxlP8emx5rj8jQsC8sMD549FySlQnb4cU,330
|
|
5
|
-
pyqt5_elawidgettools-0.2.1.dist-info/WHEEL,sha256=3CLSnNTVfJjhEPm7YpOKb1ll8emjJfjosP8kXe5WQls,107
|
|
6
|
-
pyqt5_elawidgettools-0.2.1.dist-info/top_level.txt,sha256=alL_FBCwnz-weR9jyimZ5V8-szI7nS7JowLiXyqMbzc,20
|
|
7
|
-
pyqt5_elawidgettools-0.2.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|