PyQt5-ElaWidgetTools 0.1.1__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 +44 -7
- {pyqt5_elawidgettools-0.1.1.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.1.1.dist-info/RECORD +0 -7
- {pyqt5_elawidgettools-0.1.1.dist-info → pyqt5_elawidgettools-0.2.1.dist-info}/WHEEL +0 -0
- {pyqt5_elawidgettools-0.1.1.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()
|
|
@@ -178,6 +181,10 @@ class ElaNavigationBar(QWidget):
|
|
|
178
181
|
...
|
|
179
182
|
def getNodeKeyPoints(self, nodeKey: str) -> int:
|
|
180
183
|
...
|
|
184
|
+
def setNavigationNodeTitle(self, nodeKey: str, nodeTitle: str) -> None:
|
|
185
|
+
...
|
|
186
|
+
def getNavigationNodeTitle(self, nodeKey: str) -> str:
|
|
187
|
+
...
|
|
181
188
|
def navigation(self, pageKey: str, isLogClicked: bool = True, isRouteBack: bool = False) -> None:
|
|
182
189
|
...
|
|
183
190
|
def setDisplayMode(self, displayMode: ElaNavigationType.NavigationDisplayMode, isAnimation: bool = True) -> None:
|
|
@@ -370,12 +377,13 @@ class ElaAppBarType:
|
|
|
370
377
|
class ButtonType(IntEnum):
|
|
371
378
|
NoneButtonHint = 0x0000
|
|
372
379
|
RouteBackButtonHint = 0x0001
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
380
|
+
RouteForwardButtonHint = 0x0002
|
|
381
|
+
NavigationButtonHint = 0x0004
|
|
382
|
+
StayTopButtonHint = 0x0008
|
|
383
|
+
ThemeChangeButtonHint = 0x0010
|
|
384
|
+
MinimizeButtonHint = 0x00020
|
|
385
|
+
MaximizeButtonHint = 0x0040
|
|
386
|
+
CloseButtonHint = 0x0080
|
|
379
387
|
|
|
380
388
|
class CustomArea(IntEnum):
|
|
381
389
|
LeftArea = 0x0001
|
|
@@ -493,6 +501,14 @@ class ElaSpinBoxType:
|
|
|
493
501
|
PMSide = 0x0003
|
|
494
502
|
|
|
495
503
|
|
|
504
|
+
class ElaNavigationRouterType:
|
|
505
|
+
class RouteMode(IntEnum):
|
|
506
|
+
BackValid = 0x0000
|
|
507
|
+
BackInvalid = 0x0001
|
|
508
|
+
ForwardValid = 0x0002
|
|
509
|
+
ForwardInvalid = 0x0003
|
|
510
|
+
|
|
511
|
+
|
|
496
512
|
class ElaIconType:
|
|
497
513
|
class IconName(IntEnum):
|
|
498
514
|
None_ = 0x0
|
|
@@ -4659,6 +4675,12 @@ class ElaSuggestBox(QWidget):
|
|
|
4659
4675
|
...
|
|
4660
4676
|
def setPlaceholderText(self, placeholderText: str) -> None:
|
|
4661
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
|
+
...
|
|
4662
4684
|
def addSuggestion(self, suggestText: str, suggestData: map = {}) -> str:
|
|
4663
4685
|
...
|
|
4664
4686
|
def addSuggestion(self, icon: ElaIconType.IconName, suggestText: str, suggestData: map = {}) -> str:
|
|
@@ -4838,6 +4860,8 @@ class ElaWindow(QMainWindow):
|
|
|
4838
4860
|
...
|
|
4839
4861
|
def nativeEvent(self, eventType: QByteArray, message: None, result: long) -> bool:
|
|
4840
4862
|
...
|
|
4863
|
+
def __init__(self, parent: QWidget = None) -> None:
|
|
4864
|
+
...
|
|
4841
4865
|
def __del__(self) -> None:
|
|
4842
4866
|
...
|
|
4843
4867
|
def moveToCenter(self) -> None:
|
|
@@ -4846,6 +4870,10 @@ class ElaWindow(QMainWindow):
|
|
|
4846
4870
|
...
|
|
4847
4871
|
def getCustomWidget(self) -> QWidget:
|
|
4848
4872
|
...
|
|
4873
|
+
def setCentralCustomWidget(self, customWidget: QWidget) -> None:
|
|
4874
|
+
...
|
|
4875
|
+
def getCentralCustomWidget(self) -> QWidget:
|
|
4876
|
+
...
|
|
4849
4877
|
def setCustomMenu(self, customMenu: QMenu) -> None:
|
|
4850
4878
|
...
|
|
4851
4879
|
def getCustomMenu(self) -> QMenu:
|
|
@@ -4894,6 +4922,10 @@ class ElaWindow(QMainWindow):
|
|
|
4894
4922
|
...
|
|
4895
4923
|
def getNodeKeyPoints(self, nodeKey: str) -> int:
|
|
4896
4924
|
...
|
|
4925
|
+
def setNavigationNodeTitle(self, nodeKey: str, nodeTitle: str) -> None:
|
|
4926
|
+
...
|
|
4927
|
+
def getNavigationNodeTitle(self, nodeKey: str) -> str:
|
|
4928
|
+
...
|
|
4897
4929
|
def navigation(self, pageKey: str) -> None:
|
|
4898
4930
|
...
|
|
4899
4931
|
def getCurrentNavigationIndex(self) -> int:
|
|
@@ -4912,6 +4944,7 @@ class ElaWindow(QMainWindow):
|
|
|
4912
4944
|
closeButtonClicked = pyqtSignal()
|
|
4913
4945
|
navigationNodeClicked = pyqtSignal(ElaNavigationType.NavigationNodeType, str)
|
|
4914
4946
|
customWidgetChanged = pyqtSignal()
|
|
4947
|
+
centralCustomWidgetChanged = pyqtSignal()
|
|
4915
4948
|
customMenuChanged = pyqtSignal()
|
|
4916
4949
|
pageOpenInNewWindow = pyqtSignal(str)
|
|
4917
4950
|
def eventFilter(self, watched: QObject, event: QEvent) -> bool:
|
|
@@ -5240,11 +5273,15 @@ class ElaNavigationRouter(QObject):
|
|
|
5240
5273
|
...
|
|
5241
5274
|
def __del__(self) -> None:
|
|
5242
5275
|
...
|
|
5243
|
-
navigationRouterStateChanged = pyqtSignal(
|
|
5276
|
+
navigationRouterStateChanged = pyqtSignal(ElaNavigationRouterType.RouteMode)
|
|
5244
5277
|
def navigationRoute(self, routeObject: QObject, routeFunctionName: str, routeData: map = {}, connectionType: Qt.ConnectionType = Qt.AutoConnection) -> ElaNavigationRouterType.NavigationRouteType:
|
|
5245
5278
|
...
|
|
5279
|
+
def clearNavigationRoute(self) -> None:
|
|
5280
|
+
...
|
|
5246
5281
|
def navigationRouteBack(self) -> None:
|
|
5247
5282
|
...
|
|
5283
|
+
def navigationRouteForward(self) -> None:
|
|
5284
|
+
...
|
|
5248
5285
|
class ElaScrollArea(QScrollArea):
|
|
5249
5286
|
def __init__(self, parent: QWidget = None) -> None:
|
|
5250
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=q4Wixw9xqdCTig6ppwNXT5280n0cOBA2DKL2uESbH5U,10176128
|
|
2
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=LQjxgr8Fhds4MQrlTQVimElaW9rN9IhOqPTa9L7x6yA,179507
|
|
3
|
-
PyQt5ElaWidgetTools/__init__.py,sha256=dD13hRL59kQWzdKKAUs4wkLNlJ33inWxYfv7Ok3pw9U,474
|
|
4
|
-
pyqt5_elawidgettools-0.1.1.dist-info/METADATA,sha256=0oS_5xFyW5LErldWYgEnmJsM5UMgxfCGizZba4s-vCY,330
|
|
5
|
-
pyqt5_elawidgettools-0.1.1.dist-info/WHEEL,sha256=3CLSnNTVfJjhEPm7YpOKb1ll8emjJfjosP8kXe5WQls,107
|
|
6
|
-
pyqt5_elawidgettools-0.1.1.dist-info/top_level.txt,sha256=alL_FBCwnz-weR9jyimZ5V8-szI7nS7JowLiXyqMbzc,20
|
|
7
|
-
pyqt5_elawidgettools-0.1.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|