How can I connect signals and slots of different objects in Qt?

后端 未结 2 1723
伪装坚强ぢ
伪装坚强ぢ 2021-01-20 06:17

i have a doubt in QT c++

Suppose this is the main.cpp

#include \"head.h\"
#include \"tail.h\"

int main()
{
  head *head_obj = new head();
  tail *ta         


        
2条回答
  •  悲&欢浪女
    2021-01-20 07:20

    Well, assuming everything is as simple as you show it your really really abbriated code, it should be simple

    connect( aTailInstance->tailButon, SIGNAL( clicked() ), aHeadInstance, SLOT( change_number() ) );
    

    However, with the code you have shown here it is impossible to determine what kind of functionality you are after and it isn't clear exactly what you are asking.

提交回复
热议问题