Hi there.
I’m trying to build a UI with QT. Never done this before.
I would like to use some checkboxes but i dont get the SIGNAL Stuff working.
My Interfaceclass sends now on every slotchange a signal.
#Interface Class
class Interface(base_class, form_class):
def __init__(self):
super(base_class, self).__init__()
self.setupUi(self)
self.setObjectName('Highscorelist')
self.setDockNestingEnabled(True)
self.Establish_Connections()
def createBox_fn(self):
polyCube()
def Establish_Connections(self):
QtCore.QObject.connect(self.recordBox, QtCore.SIGNAL("stateChanged(int)"),self.createBox_fn)
How do i get the on/off state of my checkbox to execute different functions?
Thxs for any help