PyQt5-ElaWidgetTools 0.2__cp37-abi3-manylinux1_x86_64.whl → 0.2.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 +34 -7
- {pyqt5_elawidgettools-0.2.dist-info → pyqt5_elawidgettools-0.2.1.dist-info}/METADATA +1 -1
- pyqt5_elawidgettools-0.2.1.dist-info/RECORD +7 -0
- pyqt5_elawidgettools-0.2.dist-info/RECORD +0 -7
- {pyqt5_elawidgettools-0.2.dist-info → pyqt5_elawidgettools-0.2.1.dist-info}/WHEEL +0 -0
- {pyqt5_elawidgettools-0.2.dist-info → pyqt5_elawidgettools-0.2.1.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -54,9 +54,12 @@ class ElaAppBar(QWidget):
|
|
|
54
54
|
...
|
|
55
55
|
def setRouteBackButtonEnable(self, isEnable: bool) -> None:
|
|
56
56
|
...
|
|
57
|
+
def setRouteForwardButtonEnable(self, isEnable: bool) -> None:
|
|
58
|
+
...
|
|
57
59
|
def closeWindow(self) -> None:
|
|
58
60
|
...
|
|
59
61
|
routeBackButtonClicked = pyqtSignal()
|
|
62
|
+
routeForwardButtonClicked = pyqtSignal()
|
|
60
63
|
navigationButtonClicked = pyqtSignal()
|
|
61
64
|
themeChangeButtonClicked = pyqtSignal()
|
|
62
65
|
closeButtonClicked = pyqtSignal()
|
|
@@ -374,12 +377,13 @@ class ElaAppBarType:
|
|
|
374
377
|
class ButtonType(IntEnum):
|
|
375
378
|
NoneButtonHint = 0x0000
|
|
376
379
|
RouteBackButtonHint = 0x0001
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
380
|
+
RouteForwardButtonHint = 0x0002
|
|
381
|
+
NavigationButtonHint = 0x0004
|
|
382
|
+
StayTopButtonHint = 0x0008
|
|
383
|
+
ThemeChangeButtonHint = 0x0010
|
|
384
|
+
MinimizeButtonHint = 0x00020
|
|
385
|
+
MaximizeButtonHint = 0x0040
|
|
386
|
+
CloseButtonHint = 0x0080
|
|
383
387
|
|
|
384
388
|
class CustomArea(IntEnum):
|
|
385
389
|
LeftArea = 0x0001
|
|
@@ -497,6 +501,14 @@ class ElaSpinBoxType:
|
|
|
497
501
|
PMSide = 0x0003
|
|
498
502
|
|
|
499
503
|
|
|
504
|
+
class ElaNavigationRouterType:
|
|
505
|
+
class RouteMode(IntEnum):
|
|
506
|
+
BackValid = 0x0000
|
|
507
|
+
BackInvalid = 0x0001
|
|
508
|
+
ForwardValid = 0x0002
|
|
509
|
+
ForwardInvalid = 0x0003
|
|
510
|
+
|
|
511
|
+
|
|
500
512
|
class ElaIconType:
|
|
501
513
|
class IconName(IntEnum):
|
|
502
514
|
None_ = 0x0
|
|
@@ -4663,6 +4675,12 @@ class ElaSuggestBox(QWidget):
|
|
|
4663
4675
|
...
|
|
4664
4676
|
def setPlaceholderText(self, placeholderText: str) -> None:
|
|
4665
4677
|
...
|
|
4678
|
+
def setFixedSize(self, size: QSize) -> None:
|
|
4679
|
+
...
|
|
4680
|
+
def setFixedSize(self, w: int, h: int) -> None:
|
|
4681
|
+
...
|
|
4682
|
+
def setFixedHeight(self, h: int) -> None:
|
|
4683
|
+
...
|
|
4666
4684
|
def addSuggestion(self, suggestText: str, suggestData: map = {}) -> str:
|
|
4667
4685
|
...
|
|
4668
4686
|
def addSuggestion(self, icon: ElaIconType.IconName, suggestText: str, suggestData: map = {}) -> str:
|
|
@@ -4852,6 +4870,10 @@ class ElaWindow(QMainWindow):
|
|
|
4852
4870
|
...
|
|
4853
4871
|
def getCustomWidget(self) -> QWidget:
|
|
4854
4872
|
...
|
|
4873
|
+
def setCentralCustomWidget(self, customWidget: QWidget) -> None:
|
|
4874
|
+
...
|
|
4875
|
+
def getCentralCustomWidget(self) -> QWidget:
|
|
4876
|
+
...
|
|
4855
4877
|
def setCustomMenu(self, customMenu: QMenu) -> None:
|
|
4856
4878
|
...
|
|
4857
4879
|
def getCustomMenu(self) -> QMenu:
|
|
@@ -4922,6 +4944,7 @@ class ElaWindow(QMainWindow):
|
|
|
4922
4944
|
closeButtonClicked = pyqtSignal()
|
|
4923
4945
|
navigationNodeClicked = pyqtSignal(ElaNavigationType.NavigationNodeType, str)
|
|
4924
4946
|
customWidgetChanged = pyqtSignal()
|
|
4947
|
+
centralCustomWidgetChanged = pyqtSignal()
|
|
4925
4948
|
customMenuChanged = pyqtSignal()
|
|
4926
4949
|
pageOpenInNewWindow = pyqtSignal(str)
|
|
4927
4950
|
def eventFilter(self, watched: QObject, event: QEvent) -> bool:
|
|
@@ -5250,11 +5273,15 @@ class ElaNavigationRouter(QObject):
|
|
|
5250
5273
|
...
|
|
5251
5274
|
def __del__(self) -> None:
|
|
5252
5275
|
...
|
|
5253
|
-
navigationRouterStateChanged = pyqtSignal(
|
|
5276
|
+
navigationRouterStateChanged = pyqtSignal(ElaNavigationRouterType.RouteMode)
|
|
5254
5277
|
def navigationRoute(self, routeObject: QObject, routeFunctionName: str, routeData: map = {}, connectionType: Qt.ConnectionType = Qt.AutoConnection) -> ElaNavigationRouterType.NavigationRouteType:
|
|
5255
5278
|
...
|
|
5279
|
+
def clearNavigationRoute(self) -> None:
|
|
5280
|
+
...
|
|
5256
5281
|
def navigationRouteBack(self) -> None:
|
|
5257
5282
|
...
|
|
5283
|
+
def navigationRouteForward(self) -> None:
|
|
5284
|
+
...
|
|
5258
5285
|
class ElaScrollArea(QScrollArea):
|
|
5259
5286
|
def __init__(self, parent: QWidget = None) -> None:
|
|
5260
5287
|
...
|
|
@@ -0,0 +1,7 @@
|
|
|
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,,
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.abi3.so,sha256=qL1xEARay8HQ7HWJRwS_sXB2Hbnd6wiWsXdz0K5yGTA,10181352
|
|
2
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=DX4avkJTHwjR7X9cUQXwcqKswXRrrDoX1V6Qj9IUWjs,179893
|
|
3
|
-
PyQt5ElaWidgetTools/__init__.py,sha256=dD13hRL59kQWzdKKAUs4wkLNlJ33inWxYfv7Ok3pw9U,474
|
|
4
|
-
pyqt5_elawidgettools-0.2.dist-info/METADATA,sha256=I7gwbWGSS3vZ8KUpNBeYIPuDLLlyDuWV3nwIL4-UUc4,328
|
|
5
|
-
pyqt5_elawidgettools-0.2.dist-info/WHEEL,sha256=3CLSnNTVfJjhEPm7YpOKb1ll8emjJfjosP8kXe5WQls,107
|
|
6
|
-
pyqt5_elawidgettools-0.2.dist-info/top_level.txt,sha256=alL_FBCwnz-weR9jyimZ5V8-szI7nS7JowLiXyqMbzc,20
|
|
7
|
-
pyqt5_elawidgettools-0.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|