Gibt es unter QT4 eine Möglichkeit den SIGNAL Sender zu ermitteln?
Wenn jetzt ui.bin_* editingFinished() Sendet. Kann ich Irgendwie herausfinden welcher der drei Objecte das Signal gesendet hat?
PHP-Code:

#include <QMessageBox>

#include "qotrdecoder.h"

qotrdecoder::qotrdecoder()
{
    
ui.setupUi(this);
//     connect( ui.btn_cancel, SIGNAL( clicked() ), this, SLOT( SlotTester() ) );
//     connect( ui.btn_decode, SIGNAL( clicked() ), this, SLOT( SlotTester() ) );
//     connect( ui.btn_open_bin, SIGNAL( clicked() ), this, SLOT( SlotTester() ) );
//     connect( ui.btn_open_key, SIGNAL( clicked() ), this, SLOT( SlotTester() ) );
//     connect( ui.btn_open_dir, SIGNAL( clicked() ), this, SLOT( SlotTester() ) );
    
connectui.inp_binSIGNALeditingFinished() ), thisSLOTSlotStringTester() ) );
    
connectui.inp_key_fileSIGNALeditingFinished() ), thisSLOTSlotStringTester() ) );
    
connectui.inp_outputSIGNALeditingFinished() ), thisSLOTSlotStringTester() ) );
}

void qotrdecoder::SlotTester()
{
    
QMessageBox::warning( new QWidget(), "SlotTester"QString"Slot Tester" ) );
}

void qotrdecoder::SlotStringTester()
{
    
QString in;
        
// Hier wuerde ich jetzt gerne das Object des Signal Handlers ermitteln
    
in.appendui.inp_bin->text() );
    
QMessageBox::warning( new QWidget(), "SlotStringTester"in );
}

qotrdecoder::~qotrdecoder()
{}