Ejemplo n.º 1
0
    def __init__(self, parent=None):
        '''
        Constructor
        '''
        QRadioButton.__init__(self, parent)
        font = QFont( "Arial", 12)
        self.setFont(font)

        #VARIABILI INTERNE
        self.__intValue = 0
        self.__strValue = ""
Ejemplo n.º 2
0
    def __init__(self, parent=None):
        '''
        Constructor
        '''
        QRadioButton.__init__(self, parent)
        self.setStyleSheet(self.styleSheet)
        font = QFont( "Arial", 18)
        self.setFont(font)

        #VARIABILI INTERNE
        self.__intValue = 0
        self.__strValue = ""
Ejemplo n.º 3
0
 def __init__(self, text, *args, **kwargs):
     QRadioButton.__init__(self, *args, **kwargs)
     self.setText(text)
Ejemplo n.º 4
0
 def __init__(self, *args):
     QRadioButton.__init__(self, *args[:-1])
     self.blog = args[-1]