@@ -1839,6 +1839,8 @@ class QModelIndex(sip.simplewrapper):
1839
1839
def column (self ) -> int : ...
1840
1840
def row (self ) -> int : ...
1841
1841
def child (self , arow : int , acolumn : int ) -> 'QModelIndex' : ...
1842
+ def siblingAtColumn (self , column : int ) -> 'QModelIndex' : ...
1843
+ def siblingAtRow (self , row : int ) -> 'QModelIndex' : ...
1842
1844
1843
1845
1844
1846
class QPersistentModelIndex (sip .simplewrapper ):
@@ -6033,6 +6035,10 @@ class QPoint(sip.simplewrapper):
6033
6035
6034
6036
def __neg__ (self ) -> 'QPoint' : ...
6035
6037
def __pos__ (self ) -> 'QPoint' : ...
6038
+ def __add__ (self , point : 'QPoint' ) -> 'QPoint' : ...
6039
+ def __sub__ (self , point : 'QPoint' ) -> 'QPoint' : ...
6040
+ def __mul__ (self , factor : float ) -> 'QPoint' : ...
6041
+ def __truediv__ (self , divisor : float ) -> 'QPoint' : ...
6036
6042
@staticmethod
6037
6043
def dotProduct (p1 : 'QPoint' , p2 : 'QPoint' ) -> int : ...
6038
6044
def setY (self , ypos : int ) -> None : ...
@@ -6058,6 +6064,10 @@ class QPointF(sip.simplewrapper):
6058
6064
6059
6065
def __neg__ (self ) -> 'QPointF' : ...
6060
6066
def __pos__ (self ) -> 'QPointF' : ...
6067
+ def __add__ (self , point : 'QPointF' ) -> 'QPointF' : ...
6068
+ def __sub__ (self , point : 'QPointF' ) -> 'QPointF' : ...
6069
+ def __mul__ (self , factor : float ) -> 'QPointF' : ...
6070
+ def __truediv__ (self , divisor : float ) -> 'QPointF' : ...
6061
6071
@staticmethod
6062
6072
def dotProduct (p1 : typing .Union ['QPointF' , QPoint ], p2 : typing .Union ['QPointF' , QPoint ]) -> float : ...
6063
6073
def manhattanLength (self ) -> float : ...
0 commit comments