PyQt5-ElaWidgetTools 0.1.1__cp37-abi3-win32.whl → 0.2.1__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 +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
|
|
@@ -138,11 +138,14 @@ class ElaAppBar(QWidget):
|
|
|
138
138
|
...
|
|
139
139
|
def setRouteBackButtonEnable(self, isEnable: bool) -> None:
|
|
140
140
|
...
|
|
141
|
+
def setRouteForwardButtonEnable(self, isEnable: bool) -> None:
|
|
142
|
+
...
|
|
141
143
|
def closeWindow(self) -> None:
|
|
142
144
|
...
|
|
143
145
|
def takeOverNativeEvent(self, eventType: QByteArray, message: None, result: long) -> int:
|
|
144
146
|
...
|
|
145
147
|
routeBackButtonClicked = pyqtSignal()
|
|
148
|
+
routeForwardButtonClicked = pyqtSignal()
|
|
146
149
|
navigationButtonClicked = pyqtSignal()
|
|
147
150
|
themeChangeButtonClicked = pyqtSignal()
|
|
148
151
|
closeButtonClicked = pyqtSignal()
|
|
@@ -389,12 +392,13 @@ class ElaAppBarType:
|
|
|
389
392
|
class ButtonType(IntEnum):
|
|
390
393
|
NoneButtonHint = 0x0000
|
|
391
394
|
RouteBackButtonHint = 0x0001
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
395
|
+
RouteForwardButtonHint = 0x0002
|
|
396
|
+
NavigationButtonHint = 0x0004
|
|
397
|
+
StayTopButtonHint = 0x0008
|
|
398
|
+
ThemeChangeButtonHint = 0x0010
|
|
399
|
+
MinimizeButtonHint = 0x00020
|
|
400
|
+
MaximizeButtonHint = 0x0040
|
|
401
|
+
CloseButtonHint = 0x0080
|
|
398
402
|
|
|
399
403
|
class CustomArea(IntEnum):
|
|
400
404
|
LeftArea = 0x0001
|
|
@@ -512,6 +516,14 @@ class ElaSpinBoxType:
|
|
|
512
516
|
PMSide = 0x0003
|
|
513
517
|
|
|
514
518
|
|
|
519
|
+
class ElaNavigationRouterType:
|
|
520
|
+
class RouteMode(IntEnum):
|
|
521
|
+
BackValid = 0x0000
|
|
522
|
+
BackInvalid = 0x0001
|
|
523
|
+
ForwardValid = 0x0002
|
|
524
|
+
ForwardInvalid = 0x0003
|
|
525
|
+
|
|
526
|
+
|
|
515
527
|
class ElaIconType:
|
|
516
528
|
class IconName(IntEnum):
|
|
517
529
|
None_ = 0x0
|
|
@@ -4679,6 +4691,10 @@ class ElaNavigationBar(QWidget):
|
|
|
4679
4691
|
...
|
|
4680
4692
|
def getNodeKeyPoints(self, nodeKey: str) -> int:
|
|
4681
4693
|
...
|
|
4694
|
+
def setNavigationNodeTitle(self, nodeKey: str, nodeTitle: str) -> None:
|
|
4695
|
+
...
|
|
4696
|
+
def getNavigationNodeTitle(self, nodeKey: str) -> str:
|
|
4697
|
+
...
|
|
4682
4698
|
def navigation(self, pageKey: str, isLogClicked: bool = True, isRouteBack: bool = False) -> None:
|
|
4683
4699
|
...
|
|
4684
4700
|
def setDisplayMode(self, displayMode: ElaNavigationType.NavigationDisplayMode, isAnimation: bool = True) -> None:
|
|
@@ -4705,11 +4721,15 @@ class ElaNavigationRouter(QObject):
|
|
|
4705
4721
|
...
|
|
4706
4722
|
def __del__(self) -> None:
|
|
4707
4723
|
...
|
|
4708
|
-
navigationRouterStateChanged = pyqtSignal(
|
|
4724
|
+
navigationRouterStateChanged = pyqtSignal(ElaNavigationRouterType.RouteMode)
|
|
4709
4725
|
def navigationRoute(self, routeObject: QObject, routeFunctionName: str, routeData: map = {}, connectionType: Qt.ConnectionType = Qt.AutoConnection) -> ElaNavigationRouterType.NavigationRouteType:
|
|
4710
4726
|
...
|
|
4727
|
+
def clearNavigationRoute(self) -> None:
|
|
4728
|
+
...
|
|
4711
4729
|
def navigationRouteBack(self) -> None:
|
|
4712
4730
|
...
|
|
4731
|
+
def navigationRouteForward(self) -> None:
|
|
4732
|
+
...
|
|
4713
4733
|
class ElaPivot(QWidget):
|
|
4714
4734
|
pTextPixelSizeChanged = pyqtSignal()
|
|
4715
4735
|
def setTextPixelSize(self, TextPixelSize: int) -> None:
|
|
@@ -5310,6 +5330,12 @@ class ElaSuggestBox(QWidget):
|
|
|
5310
5330
|
...
|
|
5311
5331
|
def setPlaceholderText(self, placeholderText: str) -> None:
|
|
5312
5332
|
...
|
|
5333
|
+
def setFixedSize(self, size: QSize) -> None:
|
|
5334
|
+
...
|
|
5335
|
+
def setFixedSize(self, w: int, h: int) -> None:
|
|
5336
|
+
...
|
|
5337
|
+
def setFixedHeight(self, h: int) -> None:
|
|
5338
|
+
...
|
|
5313
5339
|
def addSuggestion(self, suggestText: str, suggestData: map = {}) -> str:
|
|
5314
5340
|
...
|
|
5315
5341
|
def addSuggestion(self, icon: ElaIconType.IconName, suggestText: str, suggestData: map = {}) -> str:
|
|
@@ -5687,6 +5713,8 @@ class ElaWindow(QMainWindow):
|
|
|
5687
5713
|
...
|
|
5688
5714
|
def nativeEvent(self, eventType: QByteArray, message: None, result: long) -> bool:
|
|
5689
5715
|
...
|
|
5716
|
+
def __init__(self, parent: QWidget = None) -> None:
|
|
5717
|
+
...
|
|
5690
5718
|
def __del__(self) -> None:
|
|
5691
5719
|
...
|
|
5692
5720
|
def moveToCenter(self) -> None:
|
|
@@ -5695,6 +5723,10 @@ class ElaWindow(QMainWindow):
|
|
|
5695
5723
|
...
|
|
5696
5724
|
def getCustomWidget(self) -> QWidget:
|
|
5697
5725
|
...
|
|
5726
|
+
def setCentralCustomWidget(self, customWidget: QWidget) -> None:
|
|
5727
|
+
...
|
|
5728
|
+
def getCentralCustomWidget(self) -> QWidget:
|
|
5729
|
+
...
|
|
5698
5730
|
def setCustomMenu(self, customMenu: QMenu) -> None:
|
|
5699
5731
|
...
|
|
5700
5732
|
def getCustomMenu(self) -> QMenu:
|
|
@@ -5743,6 +5775,10 @@ class ElaWindow(QMainWindow):
|
|
|
5743
5775
|
...
|
|
5744
5776
|
def getNodeKeyPoints(self, nodeKey: str) -> int:
|
|
5745
5777
|
...
|
|
5778
|
+
def setNavigationNodeTitle(self, nodeKey: str, nodeTitle: str) -> None:
|
|
5779
|
+
...
|
|
5780
|
+
def getNavigationNodeTitle(self, nodeKey: str) -> str:
|
|
5781
|
+
...
|
|
5746
5782
|
def navigation(self, pageKey: str) -> None:
|
|
5747
5783
|
...
|
|
5748
5784
|
def getCurrentNavigationIndex(self) -> int:
|
|
@@ -5761,6 +5797,7 @@ class ElaWindow(QMainWindow):
|
|
|
5761
5797
|
closeButtonClicked = pyqtSignal()
|
|
5762
5798
|
navigationNodeClicked = pyqtSignal(ElaNavigationType.NavigationNodeType, str)
|
|
5763
5799
|
customWidgetChanged = pyqtSignal()
|
|
5800
|
+
centralCustomWidgetChanged = pyqtSignal()
|
|
5764
5801
|
customMenuChanged = pyqtSignal()
|
|
5765
5802
|
pageOpenInNewWindow = pyqtSignal(str)
|
|
5766
5803
|
def eventFilter(self, watched: QObject, event: QEvent) -> bool:
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
PyQt5ElaWidgetTools/ElaWidgetTools.pyd,sha256=aHk7elxqvA0lvpaAsKMurNAarsz904s00vdCRPDlzfY,5855232
|
|
2
|
+
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=50u-z5FQtgp0OKany0lqCJwtO5jvz9n8airyWzW5BtQ,188522
|
|
3
|
+
PyQt5ElaWidgetTools/__init__.py,sha256=IWd4L_B7d78eI8dSRO9muUBY-MwFLnyklHjPOS3hxjg,495
|
|
4
|
+
pyqt5_elawidgettools-0.2.1.dist-info/METADATA,sha256=yCw89kI-xWxUXSM32JUwMOpTfYWFd3d8L6oXGdjuJXo,342
|
|
5
|
+
pyqt5_elawidgettools-0.2.1.dist-info/WHEEL,sha256=g_6Gl9NcaXybq12bnhi_KDXjwHDbOvoiCEgWzPCDJbY,95
|
|
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.pyd,sha256=wt90N-lqRNDDWnXTZvnrWRO7DNW_f2e4xsQqc6ii12Q,5842432
|
|
2
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=1XpUZSvUhjiQRlpYqamz8QXMeOHcxRyRKkxXGuSgXdk,187239
|
|
3
|
-
PyQt5ElaWidgetTools/__init__.py,sha256=IWd4L_B7d78eI8dSRO9muUBY-MwFLnyklHjPOS3hxjg,495
|
|
4
|
-
pyqt5_elawidgettools-0.1.1.dist-info/METADATA,sha256=enJeDV9IvCuc1ktFrtVwk-KEzzeBv6n-hRMa8rgZ9_s,342
|
|
5
|
-
pyqt5_elawidgettools-0.1.1.dist-info/WHEEL,sha256=g_6Gl9NcaXybq12bnhi_KDXjwHDbOvoiCEgWzPCDJbY,95
|
|
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
|