0

そこに質問を投稿したことがあります:ボタンで別のクラスのテキストを変更しますが、2番目のクラスが最初のクラスによって作成されたときに機能します。現在、2 つのクラスがあり、それらは同時に作成されています。どうすれば一緒に接続できますか? 以下はすべてのコードです。最初のクラスにはボタンがあり、2 番目のクラスにはラベルがあります。ユーザーが最初のクラスのボタンをクリックすると、2 番目のクラスのラベルが変更されます。それらはstackWidgetに入れられます:

// file.h

#include <QWidget>
#include <QtGui>

class widgetA;
class widgetB;

class A : public QWidget
{
    Q_OBJECT
public:
    explicit A(QWidget *parent = 0);
private:
    QComboBox* comboBox;
    QStackedWidget* stackWidget;
    widgetA *wa;
    widgetB *wb;
};

class widgetA : public QWidget
{
    Q_OBJECT
public:
    widgetA(QWidget *parent = 0);
public slots:
    void buttonClicked();
private:
    QPushButton* button;
};

class widgetB : public QWidget
{
    Q_OBJECT

public slots:
    void labelChangeText(const QString);

public:
    widgetB(QWidget *parent = 0);
    QLabel* label;
};

そして、これは cpp ファイルです:

//file.cpp

#include "a.h"

A::A(QWidget *parent) :
    QWidget(parent)
{
    comboBox = new QComboBox(this);
    comboBox->addItem(tr("Widget A"));
    comboBox->addItem(tr("Widget B"));

    wa = new widgetA(this);
    wb = new widgetB(this);

    stackWidget = new QStackedWidget(this);
    stackWidget->addWidget(wa);
    stackWidget->addWidget(wb);
    stackWidget->setCurrentIndex(0);
    connect(comboBox, SIGNAL(currentIndexChanged(int)), stackWidget, SLOT(setCurrentIndex(int)));

    QVBoxLayout* layout = new QVBoxLayout;
    layout->addWidget(comboBox);
    layout->addWidget(stackWidget);

    setLayout(layout);
}

widgetA::widgetA(QWidget *parent):
    QWidget(parent)
{
    button = new QPushButton(tr("Click"));
    connect(button, SIGNAL(clicked()), this, SLOT(buttonClicked()));
    QHBoxLayout* lay = new QHBoxLayout;
    lay->addWidget(button);
    setLayout(lay);
}

void widgetA::buttonClicked()
{
    // what I have to do at there for call the function at widgetB class?
}

widgetB::widgetB(QWidget *parent):
    QWidget(parent)
{
    label = new QLabel("....");
    QHBoxLayout* lay = new QHBoxLayout;
    lay->addWidget(label);
    setLayout(lay);
}

void widgetB::labelChangeText(const QString text)
{
    label->setText(text);
}

P/S: すみません、私の英語

4

2 に答える 2