How to pass a value from one class to another where each class is on different file
-
@john_hobbyist
class_1
does not inherit fromQObject
so cannot emit signals, hence that error message I would say. I said I assumed yourclass_1
was supposed to be a widget, but goodness knows....You really need to grasp some of the basics, rather than just banging in code which does not make sense and seeing what happens. First you need to understand classes and instances, which is a C++ thing. Then for signals & slots have you read through https://doc.qt.io/qt-6/signalsandslots.html and understood it? Then read it again? If you follow what is there it has e.g.
All classes that inherit from QObject or one of its subclasses (e.g., QWidget) can contain signals and slots
@JonB said in How to pass a value from one class to another where each class is on different file:
@john_hobbyist
class_1
does not inherit fromQObject
so cannot emit signals, hence that error message I would say. I said I assumed yourclass_1
was supposed to be a widget, but goodness knows....You really need to grasp some of the basics, rather than just banging in code which does not make sense and seeing what happens. First you need to understand classes and instances, which is a C++ thing. Then for signals & slots have you read through https://doc.qt.io/qt-6/signalsandslots.html and understood it? Then read it again? If you follow what is there it has e.g.
All classes that inherit from QObject or one of its subclasses (e.g., QWidget) can contain signals and slots
You are right!!!! I fixed it. I think I am close...
This line:
# connect the Qt `QPushButton.clicked()` signal to `self.on_some_button_clicked()` self.some_button.clicked.connect(self.on_some_button_clicked)
either I put it in class_1 and when the class_1 is called, it should run. Either I put it in main class, where I have all the menu's choices connected to the related classes, where each class is a different file. What modifications should I do in the above command in any of the 2 cases?
-
Where is some_button located in your code ?
Where is on_some_button_clicked located in your code ? -
Where is some_button located in your code ?
Where is on_some_button_clicked located in your code ?@SGaist said in How to pass a value from one class to another where each class is on different file:
Where is some_button located in your code ?
answer: In mainWhere is on_some_button_clicked located in your code ?
answer: In class_1 -
@john_hobbyist said in How to pass a value from one class to another where each class is on different file:
I need to pass the value from var_1 to var_2
When I pass the var_1 (from class_1) to var_2 (from class_2) via the signals/slots, the beginning of class_1 and class_2 how should it be? Should I use init and things like this? I am searching it on literature...
-
Did you check the Qt for Python documentation ?
The connection is usually done by the class managing the objects you want to connect.
-
Did you check the Qt for Python documentation ?
The connection is usually done by the class managing the objects you want to connect.
@SGaist said in How to pass a value from one class to another where each class is on different file:
Did you check the Qt for Python documentation ?
The connection is usually done by the class managing the objects you want to connect.
So you mean that I need to use this:
@Slot(int)
??
(source: https://doc.qt.io/qtforpython-6/tutorials/basictutorial/signals_and_slots.html )
-
It's the documentation for PySide2/6 so there are some small differences with regard to PyQt.
-
Ok, can someone divide the code either this: https://doc.qt.io/qtforpython/examples/example_widgets__thread_signals.html or this: https://doc.qt.io/qtforpython-6/tutorials/basictutorial/signals_and_slots.html in 3 different files (for instance each file with one class) with all the related imports in order to understand the rationale?