PyQt5-ElaWidgetTools 0.0.5__cp37-abi3-win32.whl → 0.0.9__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 +29 -15
- PyQt5ElaWidgetTools/__init__.py +1 -0
- {pyqt5_elawidgettools-0.0.5.dist-info → pyqt5_elawidgettools-0.0.9.dist-info}/METADATA +2 -2
- pyqt5_elawidgettools-0.0.9.dist-info/RECORD +7 -0
- pyqt5_elawidgettools-0.0.5.dist-info/RECORD +0 -7
- {pyqt5_elawidgettools-0.0.5.dist-info → pyqt5_elawidgettools-0.0.9.dist-info}/WHEEL +0 -0
- {pyqt5_elawidgettools-0.0.5.dist-info → pyqt5_elawidgettools-0.0.9.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:
|
|
@@ -3893,7 +3898,7 @@ class ElaDrawerArea(QWidget):
|
|
|
3893
3898
|
expandStateChanged = pyqtSignal(bool)
|
|
3894
3899
|
class ElaDxgiManager(QObject):
|
|
3895
3900
|
@staticmethod
|
|
3896
|
-
def getInstance(
|
|
3901
|
+
def getInstance() -> ElaDxgiManager:
|
|
3897
3902
|
...
|
|
3898
3903
|
def __init__(self, parent: QObject = None) -> None:
|
|
3899
3904
|
...
|
|
@@ -3978,7 +3983,7 @@ class ElaEvent(QObject):
|
|
|
3978
3983
|
|
|
3979
3984
|
class ElaEventBus(QObject):
|
|
3980
3985
|
@staticmethod
|
|
3981
|
-
def getInstance(
|
|
3986
|
+
def getInstance() -> ElaEventBus:
|
|
3982
3987
|
...
|
|
3983
3988
|
def __init__(self, parent: QObject = None) -> None:
|
|
3984
3989
|
...
|
|
@@ -3990,14 +3995,14 @@ class ElaEventBus(QObject):
|
|
|
3990
3995
|
...
|
|
3991
3996
|
class ElaExponentialBlur(QObject):
|
|
3992
3997
|
@staticmethod
|
|
3993
|
-
def getInstance(
|
|
3998
|
+
def getInstance() -> ElaExponentialBlur:
|
|
3994
3999
|
...
|
|
3995
4000
|
def __init__(self, parent: QObject = None) -> None:
|
|
3996
4001
|
...
|
|
3997
4002
|
def __del__(self) -> None:
|
|
3998
4003
|
...
|
|
3999
4004
|
@staticmethod
|
|
4000
|
-
def doExponentialBlur(
|
|
4005
|
+
def doExponentialBlur( img: QImage, blurRadius: int) -> QPixmap:
|
|
4001
4006
|
...
|
|
4002
4007
|
class ElaFlowLayout(QLayout):
|
|
4003
4008
|
def __init__(self, parent: QWidget, margin: int = -1, hSpacing: int = -1, vSpacing: int = -1) -> None:
|
|
@@ -4195,7 +4200,7 @@ class ElaIcon:
|
|
|
4195
4200
|
def __init__(self, ) -> None:
|
|
4196
4201
|
...
|
|
4197
4202
|
@staticmethod
|
|
4198
|
-
def getInstance(
|
|
4203
|
+
def getInstance() -> ElaIcon:
|
|
4199
4204
|
...
|
|
4200
4205
|
def getElaIcon(self, awesome: ElaIconType.IconName) -> QIcon:
|
|
4201
4206
|
...
|
|
@@ -4463,7 +4468,7 @@ class ElaLog(QObject):
|
|
|
4463
4468
|
def getIsLogFileNameWithTime(self) -> bool:
|
|
4464
4469
|
...
|
|
4465
4470
|
@staticmethod
|
|
4466
|
-
def getInstance(
|
|
4471
|
+
def getInstance() -> ElaLog:
|
|
4467
4472
|
...
|
|
4468
4473
|
def __init__(self, parent: QObject = None) -> None:
|
|
4469
4474
|
...
|
|
@@ -4520,18 +4525,20 @@ class ElaMenuBar(QMenuBar):
|
|
|
4520
4525
|
...
|
|
4521
4526
|
def addElaIconAction(self, icon: ElaIconType.IconName, text: str) -> QAction:
|
|
4522
4527
|
...
|
|
4528
|
+
def addElaIconAction(self, icon: ElaIconType.IconName, text: str, shortcut: QKeySequence) -> QAction:
|
|
4529
|
+
...
|
|
4523
4530
|
class ElaMessageBar(QWidget):
|
|
4524
4531
|
@staticmethod
|
|
4525
|
-
def success(
|
|
4532
|
+
def success( policy: ElaMessageBarType.PositionPolicy, title: str, text: str, displayMsec: int, parent: QWidget = None) -> None:
|
|
4526
4533
|
...
|
|
4527
4534
|
@staticmethod
|
|
4528
|
-
def warning(
|
|
4535
|
+
def warning( policy: ElaMessageBarType.PositionPolicy, title: str, text: str, displayMsec: int, parent: QWidget = None) -> None:
|
|
4529
4536
|
...
|
|
4530
4537
|
@staticmethod
|
|
4531
|
-
def information(
|
|
4538
|
+
def information( policy: ElaMessageBarType.PositionPolicy, title: str, text: str, displayMsec: int, parent: QWidget = None) -> None:
|
|
4532
4539
|
...
|
|
4533
4540
|
@staticmethod
|
|
4534
|
-
def error(
|
|
4541
|
+
def error( policy: ElaMessageBarType.PositionPolicy, title: str, text: str, displayMsec: int, parent: QWidget = None) -> None:
|
|
4535
4542
|
...
|
|
4536
4543
|
def paintEvent(self, event: QPaintEvent) -> None:
|
|
4537
4544
|
...
|
|
@@ -4692,7 +4699,7 @@ class ElaNavigationRouter(QObject):
|
|
|
4692
4699
|
def getMaxRouteCount(self) -> int:
|
|
4693
4700
|
...
|
|
4694
4701
|
@staticmethod
|
|
4695
|
-
def getInstance(
|
|
4702
|
+
def getInstance() -> ElaNavigationRouter:
|
|
4696
4703
|
...
|
|
4697
4704
|
def __init__(self, parent: QObject = None) -> None:
|
|
4698
4705
|
...
|
|
@@ -5351,6 +5358,11 @@ class ElaTableView(QTableView):
|
|
|
5351
5358
|
def leaveEvent(self, event: QEvent) -> None:
|
|
5352
5359
|
...
|
|
5353
5360
|
class ElaTabWidget(QTabWidget):
|
|
5361
|
+
pIsTabTransparentChanged = pyqtSignal()
|
|
5362
|
+
def setIsTabTransparent(self, IsTabTransparent: bool) -> None:
|
|
5363
|
+
...
|
|
5364
|
+
def getIsTabTransparent(self) -> bool:
|
|
5365
|
+
...
|
|
5354
5366
|
def __init__(self, parent: QWidget = None) -> None:
|
|
5355
5367
|
...
|
|
5356
5368
|
def __del__(self) -> None:
|
|
@@ -5363,6 +5375,8 @@ class ElaTabWidget(QTabWidget):
|
|
|
5363
5375
|
...
|
|
5364
5376
|
def dropEvent(self, event: QDropEvent) -> None:
|
|
5365
5377
|
...
|
|
5378
|
+
def tabInserted(self, index: int) -> None:
|
|
5379
|
+
...
|
|
5366
5380
|
class ElaText(QLabel):
|
|
5367
5381
|
pIsWrapAnywhereChanged = pyqtSignal()
|
|
5368
5382
|
def setIsWrapAnywhere(self, IsWrapAnywhere: bool) -> None:
|
|
@@ -5401,7 +5415,7 @@ class ElaText(QLabel):
|
|
|
5401
5415
|
...
|
|
5402
5416
|
class ElaTheme(QObject):
|
|
5403
5417
|
@staticmethod
|
|
5404
|
-
def getInstance(
|
|
5418
|
+
def getInstance() -> ElaTheme:
|
|
5405
5419
|
...
|
|
5406
5420
|
def __init__(self, parent: QObject = None) -> None:
|
|
5407
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.9
|
|
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=majZ56vItpBB7Q0x-rrAJnXh4qtEUUZjIl0G9NXM6t8,5839360
|
|
2
|
+
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=cxzJDHeWh2MwIprP8d6rkjJ9AYnJa8dMwJGw-AN-z5g,187234
|
|
3
|
+
PyQt5ElaWidgetTools/__init__.py,sha256=IWd4L_B7d78eI8dSRO9muUBY-MwFLnyklHjPOS3hxjg,495
|
|
4
|
+
pyqt5_elawidgettools-0.0.9.dist-info/METADATA,sha256=Txp9W5Mj1jFo5LgrExxWuFku5bSGGY1lU5lOj1uxa80,342
|
|
5
|
+
pyqt5_elawidgettools-0.0.9.dist-info/WHEEL,sha256=g_6Gl9NcaXybq12bnhi_KDXjwHDbOvoiCEgWzPCDJbY,95
|
|
6
|
+
pyqt5_elawidgettools-0.0.9.dist-info/top_level.txt,sha256=alL_FBCwnz-weR9jyimZ5V8-szI7nS7JowLiXyqMbzc,20
|
|
7
|
+
pyqt5_elawidgettools-0.0.9.dist-info/RECORD,,
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.pyd,sha256=RIdevD0B7TT70QbjokO-mVtLj2E1UPV_eXp03hKYcL8,5837312
|
|
2
|
-
PyQt5ElaWidgetTools/ElaWidgetTools.pyi,sha256=Imu3Bd8SQw8tV945kgMd6u6JSNsawcjafPViG6F2pZ0,186796
|
|
3
|
-
PyQt5ElaWidgetTools/__init__.py,sha256=Ui_eVWfgEqdWVmKyW2PKe7pCTunjT9yb9rtDTuxfltg,451
|
|
4
|
-
pyqt5_elawidgettools-0.0.5.dist-info/METADATA,sha256=IwvRn3PkLSPre5-10M4PG4QbOfpJ5HUGnAupMpTWAwo,348
|
|
5
|
-
pyqt5_elawidgettools-0.0.5.dist-info/WHEEL,sha256=g_6Gl9NcaXybq12bnhi_KDXjwHDbOvoiCEgWzPCDJbY,95
|
|
6
|
-
pyqt5_elawidgettools-0.0.5.dist-info/top_level.txt,sha256=alL_FBCwnz-weR9jyimZ5V8-szI7nS7JowLiXyqMbzc,20
|
|
7
|
-
pyqt5_elawidgettools-0.0.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|