PyQt5-ElaWidgetTools 0.0.4__cp37-abi3-win_amd64.whl → 0.0.6__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.
Potentially problematic release.
This version of PyQt5-ElaWidgetTools might be problematic. Click here for more details.
- PyQt5ElaWidgetTools/ElaWidgetTools.pyd +0 -0
- PyQt5ElaWidgetTools/ElaWidgetTools.pyi +41 -15
- PyQt5ElaWidgetTools/__init__.py +1 -0
- {pyqt5_elawidgettools-0.0.4.dist-info → pyqt5_elawidgettools-0.0.6.dist-info}/METADATA +2 -2
- pyqt5_elawidgettools-0.0.6.dist-info/RECORD +7 -0
- pyqt5_elawidgettools-0.0.4.dist-info/RECORD +0 -7
- {pyqt5_elawidgettools-0.0.4.dist-info → pyqt5_elawidgettools-0.0.6.dist-info}/WHEEL +0 -0
- {pyqt5_elawidgettools-0.0.4.dist-info → pyqt5_elawidgettools-0.0.6.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
from typing import
|
|
1
|
+
from typing import List, Tuple, TypeAlias
|
|
2
2
|
from enum import IntEnum
|
|
3
3
|
from PyQt5.QtCore import *
|
|
4
4
|
from PyQt5.QtGui import *
|
|
@@ -164,7 +164,7 @@ class ElaApplication(QObject):
|
|
|
164
164
|
def getElaMicaImagePath(self) -> str:
|
|
165
165
|
...
|
|
166
166
|
@staticmethod
|
|
167
|
-
def getInstance(
|
|
167
|
+
def getInstance() -> ElaApplication:
|
|
168
168
|
...
|
|
169
169
|
def __init__(self, parent: QObject = None) -> None:
|
|
170
170
|
...
|
|
@@ -175,7 +175,7 @@ class ElaApplication(QObject):
|
|
|
175
175
|
def syncWindowDisplayMode(self, widget: QWidget, isSync: bool = True) -> None:
|
|
176
176
|
...
|
|
177
177
|
@staticmethod
|
|
178
|
-
def containsCursorToItem(
|
|
178
|
+
def containsCursorToItem( item: QWidget) -> bool:
|
|
179
179
|
...
|
|
180
180
|
class ElaBreadcrumbBar(QWidget):
|
|
181
181
|
pTextPixelSizeChanged = pyqtSignal()
|
|
@@ -245,6 +245,11 @@ class ElaCalendarPicker(QPushButton):
|
|
|
245
245
|
def paintEvent(self, event: QPaintEvent) -> None:
|
|
246
246
|
...
|
|
247
247
|
class ElaCheckBox(QCheckBox):
|
|
248
|
+
pBorderRadiusChanged = pyqtSignal()
|
|
249
|
+
def setBorderRadius(self, BorderRadius: int) -> None:
|
|
250
|
+
...
|
|
251
|
+
def getBorderRadius(self) -> int:
|
|
252
|
+
...
|
|
248
253
|
def __init__(self, parent: QWidget = None) -> None:
|
|
249
254
|
...
|
|
250
255
|
def __init__(self, text: str, parent: QWidget = None) -> None:
|
|
@@ -286,6 +291,8 @@ class ElaComboBox(QComboBox):
|
|
|
286
291
|
...
|
|
287
292
|
def hidePopup(self) -> None:
|
|
288
293
|
...
|
|
294
|
+
def paintEvent(self, event: QPaintEvent) -> None:
|
|
295
|
+
...
|
|
289
296
|
class ElaContentDialog(QDialog):
|
|
290
297
|
def nativeEvent(self, eventType: QByteArray, message: None, result: long) -> bool:
|
|
291
298
|
...
|
|
@@ -3891,7 +3898,7 @@ class ElaDrawerArea(QWidget):
|
|
|
3891
3898
|
expandStateChanged = pyqtSignal(bool)
|
|
3892
3899
|
class ElaDxgiManager(QObject):
|
|
3893
3900
|
@staticmethod
|
|
3894
|
-
def getInstance(
|
|
3901
|
+
def getInstance() -> ElaDxgiManager:
|
|
3895
3902
|
...
|
|
3896
3903
|
def __init__(self, parent: QObject = None) -> None:
|
|
3897
3904
|
...
|
|
@@ -3976,7 +3983,7 @@ class ElaEvent(QObject):
|
|
|
3976
3983
|
|
|
3977
3984
|
class ElaEventBus(QObject):
|
|
3978
3985
|
@staticmethod
|
|
3979
|
-
def getInstance(
|
|
3986
|
+
def getInstance() -> ElaEventBus:
|
|
3980
3987
|
...
|
|
3981
3988
|
def __init__(self, parent: QObject = None) -> None:
|
|
3982
3989
|
...
|
|
@@ -3988,14 +3995,14 @@ class ElaEventBus(QObject):
|
|
|
3988
3995
|
...
|
|
3989
3996
|
class ElaExponentialBlur(QObject):
|
|
3990
3997
|
@staticmethod
|
|
3991
|
-
def getInstance(
|
|
3998
|
+
def getInstance() -> ElaExponentialBlur:
|
|
3992
3999
|
...
|
|
3993
4000
|
def __init__(self, parent: QObject = None) -> None:
|
|
3994
4001
|
...
|
|
3995
4002
|
def __del__(self) -> None:
|
|
3996
4003
|
...
|
|
3997
4004
|
@staticmethod
|
|
3998
|
-
def doExponentialBlur(
|
|
4005
|
+
def doExponentialBlur( img: QImage, blurRadius: int) -> QPixmap:
|
|
3999
4006
|
...
|
|
4000
4007
|
class ElaFlowLayout(QLayout):
|
|
4001
4008
|
def __init__(self, parent: QWidget, margin: int = -1, hSpacing: int = -1, vSpacing: int = -1) -> None:
|
|
@@ -4193,7 +4200,7 @@ class ElaIcon:
|
|
|
4193
4200
|
def __init__(self, ) -> None:
|
|
4194
4201
|
...
|
|
4195
4202
|
@staticmethod
|
|
4196
|
-
def getInstance(
|
|
4203
|
+
def getInstance() -> ElaIcon:
|
|
4197
4204
|
...
|
|
4198
4205
|
def getElaIcon(self, awesome: ElaIconType.IconName) -> QIcon:
|
|
4199
4206
|
...
|
|
@@ -4401,6 +4408,8 @@ class ElaLCDNumber(QLCDNumber):
|
|
|
4401
4408
|
...
|
|
4402
4409
|
def __del__(self) -> None:
|
|
4403
4410
|
...
|
|
4411
|
+
def paintEvent(self, event: QPaintEvent) -> None:
|
|
4412
|
+
...
|
|
4404
4413
|
class ElaLineEdit(QLineEdit):
|
|
4405
4414
|
pBorderRadiusChanged = pyqtSignal()
|
|
4406
4415
|
def setBorderRadius(self, BorderRadius: int) -> None:
|
|
@@ -4459,7 +4468,7 @@ class ElaLog(QObject):
|
|
|
4459
4468
|
def getIsLogFileNameWithTime(self) -> bool:
|
|
4460
4469
|
...
|
|
4461
4470
|
@staticmethod
|
|
4462
|
-
def getInstance(
|
|
4471
|
+
def getInstance() -> ElaLog:
|
|
4463
4472
|
...
|
|
4464
4473
|
def __init__(self, parent: QObject = None) -> None:
|
|
4465
4474
|
...
|
|
@@ -4516,18 +4525,20 @@ class ElaMenuBar(QMenuBar):
|
|
|
4516
4525
|
...
|
|
4517
4526
|
def addElaIconAction(self, icon: ElaIconType.IconName, text: str) -> QAction:
|
|
4518
4527
|
...
|
|
4528
|
+
def addElaIconAction(self, icon: ElaIconType.IconName, text: str, shortcut: QKeySequence) -> QAction:
|
|
4529
|
+
...
|
|
4519
4530
|
class ElaMessageBar(QWidget):
|
|
4520
4531
|
@staticmethod
|
|
4521
|
-
def success(
|
|
4532
|
+
def success( policy: ElaMessageBarType.PositionPolicy, title: str, text: str, displayMsec: int, parent: QWidget = None) -> None:
|
|
4522
4533
|
...
|
|
4523
4534
|
@staticmethod
|
|
4524
|
-
def warning(
|
|
4535
|
+
def warning( policy: ElaMessageBarType.PositionPolicy, title: str, text: str, displayMsec: int, parent: QWidget = None) -> None:
|
|
4525
4536
|
...
|
|
4526
4537
|
@staticmethod
|
|
4527
|
-
def information(
|
|
4538
|
+
def information( policy: ElaMessageBarType.PositionPolicy, title: str, text: str, displayMsec: int, parent: QWidget = None) -> None:
|
|
4528
4539
|
...
|
|
4529
4540
|
@staticmethod
|
|
4530
|
-
def error(
|
|
4541
|
+
def error( policy: ElaMessageBarType.PositionPolicy, title: str, text: str, displayMsec: int, parent: QWidget = None) -> None:
|
|
4531
4542
|
...
|
|
4532
4543
|
def paintEvent(self, event: QPaintEvent) -> None:
|
|
4533
4544
|
...
|
|
@@ -4688,7 +4699,7 @@ class ElaNavigationRouter(QObject):
|
|
|
4688
4699
|
def getMaxRouteCount(self) -> int:
|
|
4689
4700
|
...
|
|
4690
4701
|
@staticmethod
|
|
4691
|
-
def getInstance(
|
|
4702
|
+
def getInstance() -> ElaNavigationRouter:
|
|
4692
4703
|
...
|
|
4693
4704
|
def __init__(self, parent: QObject = None) -> None:
|
|
4694
4705
|
...
|
|
@@ -4735,12 +4746,16 @@ class ElaPlainTextEdit(QPlainTextEdit):
|
|
|
4735
4746
|
...
|
|
4736
4747
|
def __init__(self, text: str, parent: QWidget = None) -> None:
|
|
4737
4748
|
...
|
|
4749
|
+
def __del__(self) -> None:
|
|
4750
|
+
...
|
|
4738
4751
|
def focusInEvent(self, event: QFocusEvent) -> None:
|
|
4739
4752
|
...
|
|
4740
4753
|
def focusOutEvent(self, event: QFocusEvent) -> None:
|
|
4741
4754
|
...
|
|
4742
4755
|
def contextMenuEvent(self, event: QContextMenuEvent) -> None:
|
|
4743
4756
|
...
|
|
4757
|
+
def paintEvent(self, event: QPaintEvent) -> None:
|
|
4758
|
+
...
|
|
4744
4759
|
class ElaPopularCard(QWidget):
|
|
4745
4760
|
pBorderRadiusChanged = pyqtSignal()
|
|
4746
4761
|
def setBorderRadius(self, BorderRadius: int) -> None:
|
|
@@ -5064,6 +5079,8 @@ class ElaRadioButton(QRadioButton):
|
|
|
5064
5079
|
...
|
|
5065
5080
|
def __del__(self) -> None:
|
|
5066
5081
|
...
|
|
5082
|
+
def paintEvent(self, event: QPaintEvent) -> None:
|
|
5083
|
+
...
|
|
5067
5084
|
class ElaReminderCard(QPushButton):
|
|
5068
5085
|
pBorderRadiusChanged = pyqtSignal()
|
|
5069
5086
|
def setBorderRadius(self, BorderRadius: int) -> None:
|
|
@@ -5318,6 +5335,8 @@ class ElaTabBar(QTabBar):
|
|
|
5318
5335
|
...
|
|
5319
5336
|
def dropEvent(self, event: QDropEvent) -> None:
|
|
5320
5337
|
...
|
|
5338
|
+
def wheelEvent(self, event: QWheelEvent) -> None:
|
|
5339
|
+
...
|
|
5321
5340
|
class ElaTableView(QTableView):
|
|
5322
5341
|
pHeaderMarginChanged = pyqtSignal()
|
|
5323
5342
|
def setHeaderMargin(self, HeaderMargin: int) -> None:
|
|
@@ -5339,6 +5358,11 @@ class ElaTableView(QTableView):
|
|
|
5339
5358
|
def leaveEvent(self, event: QEvent) -> None:
|
|
5340
5359
|
...
|
|
5341
5360
|
class ElaTabWidget(QTabWidget):
|
|
5361
|
+
pIsTabTransparentChanged = pyqtSignal()
|
|
5362
|
+
def setIsTabTransparent(self, IsTabTransparent: bool) -> None:
|
|
5363
|
+
...
|
|
5364
|
+
def getIsTabTransparent(self) -> bool:
|
|
5365
|
+
...
|
|
5342
5366
|
def __init__(self, parent: QWidget = None) -> None:
|
|
5343
5367
|
...
|
|
5344
5368
|
def __del__(self) -> None:
|
|
@@ -5351,6 +5375,8 @@ class ElaTabWidget(QTabWidget):
|
|
|
5351
5375
|
...
|
|
5352
5376
|
def dropEvent(self, event: QDropEvent) -> None:
|
|
5353
5377
|
...
|
|
5378
|
+
def tabInserted(self, index: int) -> None:
|
|
5379
|
+
...
|
|
5354
5380
|
class ElaText(QLabel):
|
|
5355
5381
|
pIsWrapAnywhereChanged = pyqtSignal()
|
|
5356
5382
|
def setIsWrapAnywhere(self, IsWrapAnywhere: bool) -> None:
|
|
@@ -5389,7 +5415,7 @@ class ElaText(QLabel):
|
|
|
5389
5415
|
...
|
|
5390
5416
|
class ElaTheme(QObject):
|
|
5391
5417
|
@staticmethod
|
|
5392
|
-
def getInstance(
|
|
5418
|
+
def getInstance() -> ElaTheme:
|
|
5393
5419
|
...
|
|
5394
5420
|
def __init__(self, parent: QObject = None) -> None:
|
|
5395
5421
|
...
|
PyQt5ElaWidgetTools/__init__.py
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyQt5-ElaWidgetTools
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.6
|
|
4
4
|
Author: HIllya51
|
|
5
5
|
License: MIT
|
|
6
6
|
Project-URL: Homepage, https://github.com/HIllya51/PyElaWidgetTools
|
|
7
7
|
Project-URL: Repository, https://github.com/HIllya51/PyElaWidgetTools
|
|
8
|
-
Requires-Dist: PyQt5
|
|
8
|
+
Requires-Dist: PyQt5
|
|
9
9
|
Dynamic: author
|
|
10
10
|
Dynamic: license
|
|
11
11
|
Dynamic: project-url
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
PyQt5ElaWidgetTools/ElaWidgetTools.pyd,sha256=XJGEP3SKZBfdmI3khH6DU9J7WU-3dAPVFHS3rgFr2VA,6437888
|
|
2
|
+
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=cxzJDHeWh2MwIprP8d6rkjJ9AYnJa8dMwJGw-AN-z5g,187234
|
|
3
|
+
PyQt5ElaWidgetTools/__init__.py,sha256=eUzLWJQkb-NnUyAckSNzg6dXOInvZ6VbYQWVfGqLYdE,477
|
|
4
|
+
pyqt5_elawidgettools-0.0.6.dist-info/METADATA,sha256=c0FMx5Mhmq77EzhVL5rlSs6jZni1R9SyIXr8lsFhbCM,342
|
|
5
|
+
pyqt5_elawidgettools-0.0.6.dist-info/WHEEL,sha256=encJaInd3UOm0ec-Su_7hslFIhGZCO-1qmifFj6WuV8,99
|
|
6
|
+
pyqt5_elawidgettools-0.0.6.dist-info/top_level.txt,sha256=alL_FBCwnz-weR9jyimZ5V8-szI7nS7JowLiXyqMbzc,20
|
|
7
|
+
pyqt5_elawidgettools-0.0.6.dist-info/RECORD,,
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.pyd,sha256=FVsLeb2-zfZ9R3GtBTPGf7I0tSLCt1ZcGNGKJ7MatrI,6435840
|
|
2
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=LIkBFD2yl7LKAHXywQjjyPFh0t7-jci_j-kikmoc2SU,186406
|
|
3
|
-
PyQt5ElaWidgetTools/__init__.py,sha256=Ui_eVWfgEqdWVmKyW2PKe7pCTunjT9yb9rtDTuxfltg,451
|
|
4
|
-
pyqt5_elawidgettools-0.0.4.dist-info/METADATA,sha256=EhzqU3bLUU3EoZCPemE_PcDf5pfuv4NCWppOXqHncwQ,348
|
|
5
|
-
pyqt5_elawidgettools-0.0.4.dist-info/WHEEL,sha256=encJaInd3UOm0ec-Su_7hslFIhGZCO-1qmifFj6WuV8,99
|
|
6
|
-
pyqt5_elawidgettools-0.0.4.dist-info/top_level.txt,sha256=alL_FBCwnz-weR9jyimZ5V8-szI7nS7JowLiXyqMbzc,20
|
|
7
|
-
pyqt5_elawidgettools-0.0.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|