PyQt5-ElaWidgetTools 0.3__cp37-abi3-win_amd64.whl → 0.8.0__cp37-abi3-win_amd64.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.
- PyQt5ElaWidgetTools/ElaWidgetTools.pyd +0 -0
- PyQt5ElaWidgetTools/ElaWidgetTools.pyi +124 -69
- {pyqt5_elawidgettools-0.3.dist-info → pyqt5_elawidgettools-0.8.0.dist-info}/METADATA +1 -1
- pyqt5_elawidgettools-0.8.0.dist-info/RECORD +7 -0
- {pyqt5_elawidgettools-0.3.dist-info → pyqt5_elawidgettools-0.8.0.dist-info}/WHEEL +1 -1
- pyqt5_elawidgettools-0.3.dist-info/RECORD +0 -7
- {pyqt5_elawidgettools-0.3.dist-info → pyqt5_elawidgettools-0.8.0.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
|
...
|
|
@@ -363,6 +358,7 @@ class ElaThemeType:
|
|
|
363
358
|
BasicTextNoFocus = ... # type: ignore # Auto-assigned value
|
|
364
359
|
BasicTextDisable = ... # type: ignore # Auto-assigned value
|
|
365
360
|
BasicTextPress = ... # type: ignore # Auto-assigned value
|
|
361
|
+
BasicTextCategory = ... # type: ignore # Auto-assigned value
|
|
366
362
|
BasicBorder = ... # type: ignore # Auto-assigned value
|
|
367
363
|
BasicBorderDeep = ... # type: ignore # Auto-assigned value
|
|
368
364
|
BasicBorderHover = ... # type: ignore # Auto-assigned value
|
|
@@ -427,7 +423,7 @@ class ElaTextType:
|
|
|
427
423
|
|
|
428
424
|
|
|
429
425
|
class ElaNavigationType:
|
|
430
|
-
class
|
|
426
|
+
class NodeResult(IntEnum):
|
|
431
427
|
Success = 0x0000
|
|
432
428
|
TargetNodeInvalid = 0x0001
|
|
433
429
|
TargetNodeTypeError = 0x0002
|
|
@@ -444,6 +440,7 @@ class ElaNavigationType:
|
|
|
444
440
|
class NavigationNodeType(IntEnum):
|
|
445
441
|
PageNode = 0x0000
|
|
446
442
|
FooterNode = 0x0001
|
|
443
|
+
CategoryNode = 0x0002
|
|
447
444
|
|
|
448
445
|
|
|
449
446
|
class ElaNavigationRouterType:
|
|
@@ -452,6 +449,12 @@ class ElaNavigationRouterType:
|
|
|
452
449
|
ObjectInvalid = 0x0001
|
|
453
450
|
FunctionNameInvalid = 0x0002
|
|
454
451
|
|
|
452
|
+
class RouteMode(IntEnum):
|
|
453
|
+
BackValid = 0x0000
|
|
454
|
+
BackInvalid = 0x0001
|
|
455
|
+
ForwardValid = 0x0002
|
|
456
|
+
ForwardInvalid = 0x0003
|
|
457
|
+
|
|
455
458
|
|
|
456
459
|
class ElaEventBusType:
|
|
457
460
|
class EventBusReturnType(IntEnum):
|
|
@@ -507,6 +510,11 @@ class ElaWindowType:
|
|
|
507
510
|
Flip = 0x0003
|
|
508
511
|
Blur = 0x0004
|
|
509
512
|
|
|
513
|
+
class PaintMode(IntEnum):
|
|
514
|
+
Normal = 0x0000
|
|
515
|
+
Pixmap = 0x0001
|
|
516
|
+
Movie = 0x0002
|
|
517
|
+
|
|
510
518
|
|
|
511
519
|
class ElaSpinBoxType:
|
|
512
520
|
class ButtonMode(IntEnum):
|
|
@@ -516,14 +524,6 @@ class ElaSpinBoxType:
|
|
|
516
524
|
PMSide = 0x0003
|
|
517
525
|
|
|
518
526
|
|
|
519
|
-
class ElaNavigationRouterType:
|
|
520
|
-
class RouteMode(IntEnum):
|
|
521
|
-
BackValid = 0x0000
|
|
522
|
-
BackInvalid = 0x0001
|
|
523
|
-
ForwardValid = 0x0002
|
|
524
|
-
ForwardInvalid = 0x0003
|
|
525
|
-
|
|
526
|
-
|
|
527
527
|
class ElaIconType:
|
|
528
528
|
class IconName(IntEnum):
|
|
529
529
|
None_ = 0x0
|
|
@@ -4300,11 +4300,6 @@ class ElaImageCard(QWidget):
|
|
|
4300
4300
|
...
|
|
4301
4301
|
def getIsPreserveAspectCrop(self) -> bool:
|
|
4302
4302
|
...
|
|
4303
|
-
pMaximumAspectRatioChanged = pyqtSignal()
|
|
4304
|
-
def setMaximumAspectRatio(self, MaximumAspectRatio: float) -> None:
|
|
4305
|
-
...
|
|
4306
|
-
def getMaximumAspectRatio(self) -> float:
|
|
4307
|
-
...
|
|
4308
4303
|
def __init__(self, parent: QWidget = None) -> None:
|
|
4309
4304
|
...
|
|
4310
4305
|
def __del__(self) -> None:
|
|
@@ -4663,42 +4658,48 @@ class ElaNavigationBar(QWidget):
|
|
|
4663
4658
|
...
|
|
4664
4659
|
def setUserInfoCardSubTitle(self, subTitle: str) -> None:
|
|
4665
4660
|
...
|
|
4666
|
-
def addExpanderNode(self, expanderTitle:
|
|
4661
|
+
def addExpanderNode(self, expanderTitle: str, awesome: ElaIconType.IconName = ElaIconType.None_) -> Tuple[ElaNavigationType.NodeResult, str]:
|
|
4667
4662
|
...
|
|
4668
|
-
def addExpanderNode(self, expanderTitle:
|
|
4663
|
+
def addExpanderNode(self, expanderTitle: str, targetExpanderKey: str, awesome: ElaIconType.IconName = ElaIconType.None_) -> Tuple[ElaNavigationType.NodeResult, str]:
|
|
4669
4664
|
...
|
|
4670
|
-
def addPageNode(self, pageTitle:
|
|
4665
|
+
def addPageNode(self, pageTitle: str, page: QWidget, awesome: ElaIconType.IconName = ElaIconType.None_) -> ElaNavigationType.NodeResult:
|
|
4671
4666
|
...
|
|
4672
|
-
def
|
|
4667
|
+
def addPageNodeKeyPoints(self, pageTitle: str, page: QWidget, keyPoints: int, awesome: ElaIconType.IconName = ElaIconType.None_) -> ElaNavigationType.NodeResult:
|
|
4673
4668
|
...
|
|
4674
|
-
def
|
|
4669
|
+
def addPageNode(self, pageTitle: str, page: QWidget, targetExpanderKey: str, awesome: ElaIconType.IconName = ElaIconType.None_) -> ElaNavigationType.NodeResult:
|
|
4675
4670
|
...
|
|
4676
|
-
def addPageNodeKeyPoints(self, pageTitle:
|
|
4671
|
+
def addPageNodeKeyPoints(self, pageTitle: str, page: QWidget, targetExpanderKey: str, keyPoints: int, awesome: ElaIconType.IconName = ElaIconType.None_) -> ElaNavigationType.NodeResult:
|
|
4677
4672
|
...
|
|
4678
|
-
def addFooterNode(self, footerTitle:
|
|
4673
|
+
def addFooterNode(self, footerTitle: str, keyPoints: int = 0, awesome: ElaIconType.IconName = ElaIconType.None_) -> Tuple[ElaNavigationType.NodeResult, str]:
|
|
4679
4674
|
...
|
|
4680
|
-
def addFooterNode(self, footerTitle:
|
|
4675
|
+
def addFooterNode(self, footerTitle: str, page: QWidget, keyPoints: int = 0, awesome: ElaIconType.IconName = ElaIconType.None_) -> Tuple[ElaNavigationType.NodeResult, str]:
|
|
4681
4676
|
...
|
|
4682
|
-
def
|
|
4677
|
+
def addCategoryNode(self, categoryTitle: str) -> Tuple[ElaNavigationType.NodeResult, str]:
|
|
4683
4678
|
...
|
|
4684
|
-
def
|
|
4679
|
+
def addCategoryNode(self, categoryTitle: str, targetExpanderKey: str) -> Tuple[ElaNavigationType.NodeResult, str]:
|
|
4685
4680
|
...
|
|
4686
|
-
def
|
|
4681
|
+
def getNodeIsExpanded(self, expanderKey: str) -> bool:
|
|
4687
4682
|
...
|
|
4688
|
-
def
|
|
4683
|
+
def expandNode(self, expanderKey: str) -> None:
|
|
4684
|
+
...
|
|
4685
|
+
def collapseNode(self, expanderKey: str) -> None:
|
|
4686
|
+
...
|
|
4687
|
+
def removeNode(self, nodeKey: str) -> None:
|
|
4689
4688
|
...
|
|
4690
4689
|
def setNodeKeyPoints(self, nodeKey: str, keyPoints: int) -> None:
|
|
4691
4690
|
...
|
|
4692
4691
|
def getNodeKeyPoints(self, nodeKey: str) -> int:
|
|
4693
4692
|
...
|
|
4694
|
-
def
|
|
4693
|
+
def setNodeTitle(self, nodeKey: str, nodeTitle: str) -> None:
|
|
4695
4694
|
...
|
|
4696
|
-
def
|
|
4695
|
+
def getNodeTitle(self, nodeKey: str) -> str:
|
|
4697
4696
|
...
|
|
4698
4697
|
def navigation(self, pageKey: str, isLogClicked: bool = True, isRouteBack: bool = False) -> None:
|
|
4699
4698
|
...
|
|
4700
4699
|
def setDisplayMode(self, displayMode: ElaNavigationType.NavigationDisplayMode, isAnimation: bool = True) -> None:
|
|
4701
4700
|
...
|
|
4701
|
+
def getDisplayMode(self) -> ElaNavigationType.NavigationDisplayMode:
|
|
4702
|
+
...
|
|
4702
4703
|
def getPageOpenInNewWindowCount(self, nodeKey: str) -> int:
|
|
4703
4704
|
...
|
|
4704
4705
|
pageOpenInNewWindow = pyqtSignal(str)
|
|
@@ -5186,14 +5187,29 @@ class ElaRoller(QWidget):
|
|
|
5186
5187
|
...
|
|
5187
5188
|
def getCurrentIndex(self) -> int:
|
|
5188
5189
|
...
|
|
5190
|
+
pIsContainerChanged = pyqtSignal()
|
|
5191
|
+
def setIsContainer(self, IsContainer: bool) -> None:
|
|
5192
|
+
...
|
|
5193
|
+
def getIsContainer(self) -> bool:
|
|
5194
|
+
...
|
|
5195
|
+
pIsEnableLoopChanged = pyqtSignal()
|
|
5196
|
+
def setIsEnableLoop(self, IsEnableLoop: bool) -> None:
|
|
5197
|
+
...
|
|
5198
|
+
def getIsEnableLoop(self) -> bool:
|
|
5199
|
+
...
|
|
5189
5200
|
def __init__(self, parent: QWidget = None) -> None:
|
|
5190
5201
|
...
|
|
5191
5202
|
def __del__(self) -> None:
|
|
5192
5203
|
...
|
|
5204
|
+
def setCurrentData(self, data: str) -> None:
|
|
5205
|
+
...
|
|
5193
5206
|
def getCurrentData(self) -> str:
|
|
5194
5207
|
...
|
|
5208
|
+
currentDataChanged = pyqtSignal( str)
|
|
5195
5209
|
def wheelEvent(self, event: QWheelEvent) -> None:
|
|
5196
5210
|
...
|
|
5211
|
+
def mousePressEvent(self, event: QMouseEvent) -> None:
|
|
5212
|
+
...
|
|
5197
5213
|
def mouseReleaseEvent(self, event: QMouseEvent) -> None:
|
|
5198
5214
|
...
|
|
5199
5215
|
def mouseMoveEvent(self, event: QMouseEvent) -> None:
|
|
@@ -5202,6 +5218,42 @@ class ElaRoller(QWidget):
|
|
|
5202
5218
|
...
|
|
5203
5219
|
def paintEvent(self, event: QPaintEvent) -> None:
|
|
5204
5220
|
...
|
|
5221
|
+
class ElaRollerPicker(QPushButton):
|
|
5222
|
+
pBorderRadiusChanged = pyqtSignal()
|
|
5223
|
+
def setBorderRadius(self, BorderRadius: int) -> None:
|
|
5224
|
+
...
|
|
5225
|
+
def getBorderRadius(self) -> int:
|
|
5226
|
+
...
|
|
5227
|
+
def __init__(self, parent: QWidget = None) -> None:
|
|
5228
|
+
...
|
|
5229
|
+
def __del__(self) -> None:
|
|
5230
|
+
...
|
|
5231
|
+
def addRoller(self, itemList: List[str], isEnableLoop: bool = True) -> None:
|
|
5232
|
+
...
|
|
5233
|
+
def removeRoller(self, index: int) -> None:
|
|
5234
|
+
...
|
|
5235
|
+
def setRollerItemList(self, index: int, itemList: List[str]) -> None:
|
|
5236
|
+
...
|
|
5237
|
+
def setRollerWidth(self, index: int, width: int) -> None:
|
|
5238
|
+
...
|
|
5239
|
+
def setCurrentData(self, index: int, data: str) -> None:
|
|
5240
|
+
...
|
|
5241
|
+
def setCurrentData(self, dataList: List[str]) -> None:
|
|
5242
|
+
...
|
|
5243
|
+
def getCurrentData(self, index: int) -> str:
|
|
5244
|
+
...
|
|
5245
|
+
def getCurrentData(self) -> List[str]:
|
|
5246
|
+
...
|
|
5247
|
+
def setCurrentIndex(self, rollerIndex: int, index: int) -> None:
|
|
5248
|
+
...
|
|
5249
|
+
def setCurrentIndex(self, indexList: List[int]) -> None:
|
|
5250
|
+
...
|
|
5251
|
+
def getCurrentIndex(self, rollerIndex: int) -> int:
|
|
5252
|
+
...
|
|
5253
|
+
currentDataChanged = pyqtSignal( List[str])
|
|
5254
|
+
currentDataSelectionChanged = pyqtSignal( List[str])
|
|
5255
|
+
def paintEvent(self, event: QPaintEvent) -> None:
|
|
5256
|
+
...
|
|
5205
5257
|
class ElaScrollArea(QScrollArea):
|
|
5206
5258
|
def __init__(self, parent: QWidget = None) -> None:
|
|
5207
5259
|
...
|
|
@@ -5324,27 +5376,10 @@ class ElaSuggestBox(QWidget):
|
|
|
5324
5376
|
...
|
|
5325
5377
|
def getCaseSensitivity(self) -> Qt.CaseSensitivity:
|
|
5326
5378
|
...
|
|
5327
|
-
def
|
|
5328
|
-
...
|
|
5329
|
-
def __del__(self) -> None:
|
|
5330
|
-
...
|
|
5331
|
-
def setPlaceholderText(self, placeholderText: str) -> None:
|
|
5332
|
-
...
|
|
5333
|
-
def setFixedSize(self, size: QSize) -> None:
|
|
5379
|
+
def SuggestData(self) -> explicit:
|
|
5334
5380
|
...
|
|
5335
|
-
def
|
|
5381
|
+
def SuggestData(self, icon: ElaIconType.IconName, suggestText: str, suggestData: map = {}) -> explicit:
|
|
5336
5382
|
...
|
|
5337
|
-
def setFixedHeight(self, h: int) -> None:
|
|
5338
|
-
...
|
|
5339
|
-
def addSuggestion(self, suggestText: str, suggestData: map = {}) -> str:
|
|
5340
|
-
...
|
|
5341
|
-
def addSuggestion(self, icon: ElaIconType.IconName, suggestText: str, suggestData: map = {}) -> str:
|
|
5342
|
-
...
|
|
5343
|
-
def removeSuggestion(self, suggestKey: str) -> None:
|
|
5344
|
-
...
|
|
5345
|
-
def removeSuggestion(self, index: int) -> None:
|
|
5346
|
-
...
|
|
5347
|
-
suggestionClicked = pyqtSignal(str, map)
|
|
5348
5383
|
class ElaTabBar(QTabBar):
|
|
5349
5384
|
pTabSizeChanged = pyqtSignal()
|
|
5350
5385
|
def setTabSize(self, TabSize: QSize) -> None:
|
|
@@ -5570,6 +5605,8 @@ class ElaToolButton(QToolButton):
|
|
|
5570
5605
|
...
|
|
5571
5606
|
def setElaIcon(self, icon: ElaIconType.IconName) -> None:
|
|
5572
5607
|
...
|
|
5608
|
+
def setElaIcon(self, icon: ElaIconType.IconName, rotate: int) -> None:
|
|
5609
|
+
...
|
|
5573
5610
|
def eventFilter(self, watched: QObject, event: QEvent) -> bool:
|
|
5574
5611
|
...
|
|
5575
5612
|
class ElaToolTip(QWidget):
|
|
@@ -5688,11 +5725,6 @@ class ElaWindow(QMainWindow):
|
|
|
5688
5725
|
...
|
|
5689
5726
|
def getAppBarHeight(self) -> int:
|
|
5690
5727
|
...
|
|
5691
|
-
pCustomWidgetMaximumWidthChanged = pyqtSignal()
|
|
5692
|
-
def setCustomWidgetMaximumWidth(self, CustomWidgetMaximumWidth: int) -> None:
|
|
5693
|
-
...
|
|
5694
|
-
def getCustomWidgetMaximumWidth(self) -> int:
|
|
5695
|
-
...
|
|
5696
5728
|
pThemeChangeTimeChanged = pyqtSignal()
|
|
5697
5729
|
def setThemeChangeTime(self, ThemeChangeTime: int) -> None:
|
|
5698
5730
|
...
|
|
@@ -5733,6 +5765,11 @@ class ElaWindow(QMainWindow):
|
|
|
5733
5765
|
...
|
|
5734
5766
|
def getStackSwitchMode(self) -> ElaWindowType.StackSwitchMode:
|
|
5735
5767
|
...
|
|
5768
|
+
pWindowPaintModeChanged = pyqtSignal()
|
|
5769
|
+
def setWindowPaintMode(self, WindowPaintMode: ElaWindowType.PaintMode) -> None:
|
|
5770
|
+
...
|
|
5771
|
+
def getWindowPaintMode(self) -> ElaWindowType.PaintMode:
|
|
5772
|
+
...
|
|
5736
5773
|
def nativeEvent(self, eventType: QByteArray, message: None, result: long) -> bool:
|
|
5737
5774
|
...
|
|
5738
5775
|
def __init__(self, parent: QWidget = None) -> None:
|
|
@@ -5741,9 +5778,9 @@ class ElaWindow(QMainWindow):
|
|
|
5741
5778
|
...
|
|
5742
5779
|
def moveToCenter(self) -> None:
|
|
5743
5780
|
...
|
|
5744
|
-
def setCustomWidget(self, customArea: ElaAppBarType.CustomArea, customWidget: QWidget) -> None:
|
|
5781
|
+
def setCustomWidget(self, customArea: ElaAppBarType.CustomArea, customWidget: QWidget, hitTestObject: QObject = None, hitTestFunctionName: str = "") -> None:
|
|
5745
5782
|
...
|
|
5746
|
-
def getCustomWidget(self) -> QWidget:
|
|
5783
|
+
def getCustomWidget(self, customArea: ElaAppBarType.CustomArea) -> QWidget:
|
|
5747
5784
|
...
|
|
5748
5785
|
def setCentralCustomWidget(self, customWidget: QWidget) -> None:
|
|
5749
5786
|
...
|
|
@@ -5761,21 +5798,25 @@ class ElaWindow(QMainWindow):
|
|
|
5761
5798
|
...
|
|
5762
5799
|
def setUserInfoCardSubTitle(self, subTitle: str) -> None:
|
|
5763
5800
|
...
|
|
5764
|
-
def addExpanderNode(self, expanderTitle:
|
|
5801
|
+
def addExpanderNode(self, expanderTitle: str, awesome: ElaIconType.IconName = ElaIconType.None_) -> Tuple[ElaNavigationType.NodeResult, str]:
|
|
5765
5802
|
...
|
|
5766
|
-
def addExpanderNode(self, expanderTitle:
|
|
5803
|
+
def addExpanderNode(self, expanderTitle: str, targetExpanderKey: str, awesome: ElaIconType.IconName = ElaIconType.None_) -> Tuple[ElaNavigationType.NodeResult, str]:
|
|
5767
5804
|
...
|
|
5768
|
-
def addPageNode(self, pageTitle:
|
|
5805
|
+
def addPageNode(self, pageTitle: str, page: QWidget, awesome: ElaIconType.IconName = ElaIconType.None_) -> ElaNavigationType.NodeResult:
|
|
5769
5806
|
...
|
|
5770
|
-
def
|
|
5807
|
+
def addPageNodeKeyPoints(self, pageTitle: str, page: QWidget, keyPoints: int, awesome: ElaIconType.IconName = ElaIconType.None_) -> ElaNavigationType.NodeResult:
|
|
5771
5808
|
...
|
|
5772
|
-
def
|
|
5809
|
+
def addPageNode(self, pageTitle: str, page: QWidget, targetExpanderKey: str, awesome: ElaIconType.IconName = ElaIconType.None_) -> ElaNavigationType.NodeResult:
|
|
5773
5810
|
...
|
|
5774
|
-
def addPageNodeKeyPoints(self, pageTitle:
|
|
5811
|
+
def addPageNodeKeyPoints(self, pageTitle: str, page: QWidget, targetExpanderKey: str, keyPoints: int, awesome: ElaIconType.IconName = ElaIconType.None_) -> ElaNavigationType.NodeResult:
|
|
5775
5812
|
...
|
|
5776
|
-
def addFooterNode(self, footerTitle:
|
|
5813
|
+
def addFooterNode(self, footerTitle: str, keyPoints: int = 0, awesome: ElaIconType.IconName = ElaIconType.None_) -> Tuple[ElaNavigationType.NodeResult, str]:
|
|
5777
5814
|
...
|
|
5778
|
-
def addFooterNode(self, footerTitle:
|
|
5815
|
+
def addFooterNode(self, footerTitle: str, page: QWidget, keyPoints: int = 0, awesome: ElaIconType.IconName = ElaIconType.None_) -> Tuple[ElaNavigationType.NodeResult, str]:
|
|
5816
|
+
...
|
|
5817
|
+
def addCategoryNode(self, categoryTitle: str) -> Tuple[ElaNavigationType.NodeResult, str]:
|
|
5818
|
+
...
|
|
5819
|
+
def addCategoryNode(self, categoryTitle: str, targetExpanderKey: str) -> Tuple[ElaNavigationType.NodeResult, str]:
|
|
5779
5820
|
...
|
|
5780
5821
|
def addCentralWidget(self, centralWidget: QWidget) -> None:
|
|
5781
5822
|
...
|
|
@@ -5813,6 +5854,18 @@ class ElaWindow(QMainWindow):
|
|
|
5813
5854
|
...
|
|
5814
5855
|
def getWindowButtonFlags(self) -> ElaAppBarType.ButtonFlags:
|
|
5815
5856
|
...
|
|
5857
|
+
def setWindowMoviePath(self, themeMode: ElaThemeType.ThemeMode, moviePath: str) -> None:
|
|
5858
|
+
...
|
|
5859
|
+
def getWindowMoviePath(self, themeMode: ElaThemeType.ThemeMode) -> str:
|
|
5860
|
+
...
|
|
5861
|
+
def setWindowPixmap(self, themeMode: ElaThemeType.ThemeMode, pixmap: QPixmap) -> None:
|
|
5862
|
+
...
|
|
5863
|
+
def getWindowPixmap(self, themeMode: ElaThemeType.ThemeMode) -> QPixmap:
|
|
5864
|
+
...
|
|
5865
|
+
def setWindowMovieRate(self, rate: float) -> None:
|
|
5866
|
+
...
|
|
5867
|
+
def getWindowMovieRate(self) -> float:
|
|
5868
|
+
...
|
|
5816
5869
|
def closeWindow(self) -> None:
|
|
5817
5870
|
...
|
|
5818
5871
|
userInfoCardClicked = pyqtSignal()
|
|
@@ -5826,3 +5879,5 @@ class ElaWindow(QMainWindow):
|
|
|
5826
5879
|
...
|
|
5827
5880
|
def createPopupMenu(self) -> QMenu:
|
|
5828
5881
|
...
|
|
5882
|
+
def paintEvent(self, event: QPaintEvent) -> None:
|
|
5883
|
+
...
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
PyQt5ElaWidgetTools/ElaWidgetTools.pyd,sha256=mLzy3mqDcPiowoS0UGwwearNfQsmBccJ5AOsqkGf9mk,6531072
|
|
2
|
+
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=_HZA14ah8Ya1ZAmfaaklQXpwMTtHl016S1CAvYvFutE,191482
|
|
3
|
+
PyQt5ElaWidgetTools/__init__.py,sha256=IWd4L_B7d78eI8dSRO9muUBY-MwFLnyklHjPOS3hxjg,495
|
|
4
|
+
pyqt5_elawidgettools-0.8.0.dist-info/METADATA,sha256=x6K92W5RMwztHimZPWGfJr40ZMtKHwdczn_lfP1V0T4,342
|
|
5
|
+
pyqt5_elawidgettools-0.8.0.dist-info/WHEEL,sha256=A2IL_HEzVhv0mFrMWn1G5OM4Tyl4h45H35-0OsBwTMo,100
|
|
6
|
+
pyqt5_elawidgettools-0.8.0.dist-info/top_level.txt,sha256=alL_FBCwnz-weR9jyimZ5V8-szI7nS7JowLiXyqMbzc,20
|
|
7
|
+
pyqt5_elawidgettools-0.8.0.dist-info/RECORD,,
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.pyd,sha256=vBVi7yBgSqvvuEIacV1_goMoRBcxs50Cuj_X0q83E5s,6468608
|
|
2
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=mo9olDPaIeR5COhskruRRKYaNOovG2ZIfoqDQpz3YZA,189272
|
|
3
|
-
PyQt5ElaWidgetTools/__init__.py,sha256=IWd4L_B7d78eI8dSRO9muUBY-MwFLnyklHjPOS3hxjg,495
|
|
4
|
-
pyqt5_elawidgettools-0.3.dist-info/METADATA,sha256=2zqDeSgBthw1I1bnNuQ1eavbZf1IimN7etM7U3gK4Oc,340
|
|
5
|
-
pyqt5_elawidgettools-0.3.dist-info/WHEEL,sha256=encJaInd3UOm0ec-Su_7hslFIhGZCO-1qmifFj6WuV8,99
|
|
6
|
-
pyqt5_elawidgettools-0.3.dist-info/top_level.txt,sha256=alL_FBCwnz-weR9jyimZ5V8-szI7nS7JowLiXyqMbzc,20
|
|
7
|
-
pyqt5_elawidgettools-0.3.dist-info/RECORD,,
|
|
File without changes
|