79459163

Date: 2025-02-22 06:32:32
Score: 6 🚩
Natty:
Report link

With @dROOOze's suggestion, I rewrote the code like this

from typing import TypedDict, Unpack, Required, NotRequired


class WidgetArgs(TypedDict):
    width:int|None
    height:int|None
    minWidth:int|None
    minHeight:int|None
    maxWidth:int|None
    maxHeight:int|None
    stretchFactor:int
    align:str|None
    color:str|None
    bgColor:str|None
    border:str|None
    fontSize:int|None
    fontWeight:str|None
    fontFamily:str|None
    padding:str|None
    hExpanding:bool
    vExpanding:bool
    name:str|None
    styleSheet:str

def popStyleArgs(kwargs:dict):
    retDict = {}
    for name in WidgetArgs.__required_keys__:
        val = kwargs.pop(name,None)
        if val:
            retDict[name] = val
    return retDict


class Label(QLabel):
    def __init__(self, *args, 
        labelImg:str|None=None,      
        **kwargs: Unpack[WidgetArgs]):
        
        styleArgs = popStyleArgs(kwargs)
        super().__init__(*args, **kwargs)
        ss(self, **styleArgs)

        if labelImg is not None:
            self.setPixmap(QtGui.QPixmap(labelImg))



class Button(QPushButton):
    def __init__(self, *args, 
        onClick:Callable|None=None,     
        **kwargs: Unpack[WidgetArgs]):
        
        styleArgs = popStyleArgs(kwargs)
        super().__init__(*args, **kwargs)
        ss(self, **styleArgs)

        self.clicked.connect(onClick)

It works well.


And in VSCode, I could get auto-complete suggestion like this, which is great.

enter image description here

When mouse hovers on the type, it will show definition like this, it's ok.

enter image description here


In Pycharm, even better, when hovering, it will show the referenced unpack types, like this

enter image description here


The only pitty is, I have to copy the document str of args to every widget's initial functions. The document still could not be shared. Any suggestions?

Reasons:
  • RegEx Blacklisted phrase (2): Any suggestions?
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @dROOOze's
  • Self-answer (0.5):
  • Looks like a comment (1):
Posted by: Jcyrss