Where the hel do I find a list of functions for signals?
-
Hello, I have been looking everywhere and I can't find a simple library of available functions for button or other signals.
For example
connections:
button.onClicked: Window.exit()for exiting the window? on an exit button? anyone have any answers? or do I have to make every single function myself and import them seperately?
-
Hello, I have been looking everywhere and I can't find a simple library of available functions for button or other signals.
For example
connections:
button.onClicked: Window.exit()for exiting the window? on an exit button? anyone have any answers? or do I have to make every single function myself and import them seperately?
I don't understand your real problem but you can find the signals of an object in the documentation - e.g. for a QPushButton. The same goes for the slots of an object: QWidget.
-
Hello, I have been looking everywhere and I can't find a simple library of available functions for button or other signals.
For example
connections:
button.onClicked: Window.exit()for exiting the window? on an exit button? anyone have any answers? or do I have to make every single function myself and import them seperately?
-
I don't understand your real problem but you can find the signals of an object in the documentation - e.g. for a QPushButton. The same goes for the slots of an object: QWidget.
@Christian-Ehrlicher That's probably what I was looking for, thanks.
I was looking at the "signals and values pages" before, which of course had nothing.