File tree 1 file changed +23
-3
lines changed
1 file changed +23
-3
lines changed Original file line number Diff line number Diff line change 1
1
import typing
2
-
2
+
3
3
from . import QtWidgets
4
-
5
-
4
+ from . import QtCore
5
+
6
+
6
7
class QHeaderView :
7
8
@typing .overload
8
9
@staticmethod
@@ -11,4 +12,23 @@ class QHeaderView:
11
12
@staticmethod
12
13
def setSectionResizeMode (header : QtWidgets .QHeaderView , mode : QtWidgets .QHeaderView .ResizeMode ) -> None : ...
13
14
15
+
16
+ def delete (obj : object ) -> None : ...
17
+
18
+
19
+ def getCppPointer (obj : object ) -> typing .Tuple [int , ...]: ...
20
+
21
+
22
+ def isValid (obj : object ) -> bool : ...
23
+
24
+
25
+ def loadUi (uifile : str , baseinstance : typing .Optional [None | QtWidgets .QWidget ] = ...) -> QtWidgets .QWidget : ...
26
+
27
+
28
+ def load_ui (uifile : str , baseinstance : typing .Optional [None | QtWidgets .QWidget ] = ...) -> QtWidgets .QWidget : ...
29
+
30
+
14
31
def translate (context : str , sourceText : str , * args : typing .Any ) -> str : ...
32
+
33
+
34
+ def wrapInstance (address : int , qt_type : type ) -> object | QtCore .QObject | QtWidgets .QWidget : ...
You can’t perform that action at this time.
0 commit comments