Qt:捕获和传递信号的最佳机制

发布于 2024-11-16 09:12:58 字数 1124 浏览 2 评论 0原文

我有一个扩展 QWidget 类的类,该类使用 QtDesigner 生成的 Ui 类。如下所示:

class MyWidget : public QWidget
{
   signals:
            void pushButtonClicked();
   // ....
   private:
            Ui::MyUi ui;

}

MyWidget::MyWidget()
{
    ui = new Ui::MyUi();
    ui->setupUi(this);
}

现在假设 Ui::MyUi 中有一个 QPushButton * PushButton 字段。该小部件的 UI 没有复杂的业务逻辑。

现在要求每当点击 pushButton 时,这个小部件就应该发出一个信号(我们称之为 pushButtonClicked())。现在我能想象实现这一点的唯一方法是:

  1. pushButton 对象的 clicked() 信号连接到本地插槽,并从那里发出信号 pushButtonClicked()

  2. Install MyWidget< 。 /code> 作为 pushButton 的 mouseEventFilter 并在 MyWidget::mouseClickedEvent

    中处理它

还有其他选择吗?比如让 Qt 框架使用 'MyWidget::pushButtonClicked()' 而不是 pushButton- >clicked()

在项目中,我有很多这样的场景,其中需要从像 MyWidget 这样的包装类传递这样的信号,它通过聚合或抽象来包装/抽象 UI继承。一般来说,这被认为是更好设计、代码重用(尤其是代码重用)的最佳方法。当项目处于初期阶段并且不知道这些 UI 中的哪些将来可能需要复杂的业务逻辑时。

请注意,扩展 QPushButton 不是一个选项。

I have a class extending QWidget class and this class uses a Ui class generated by QtDesigner. Something like following:

class MyWidget : public QWidget
{
   signals:
            void pushButtonClicked();
   // ....
   private:
            Ui::MyUi ui;

}

MyWidget::MyWidget()
{
    ui = new Ui::MyUi();
    ui->setupUi(this);
}

Now lets suppose there is a QPushButton * pushButton field inside Ui::MyUi. The UI for this widget has no complex business logic.

Now it is required that whenever pushButton is clicked this widget should emit a signal (lets call it pushButtonClicked(). Now the only way I can imagine this to be achieved is to:

  1. connect clicked() signal of pushButton object to a local slot and emit signal pushButtonClicked()from there.

  2. Install MyWidget as mouseEventFilter for pushButton and handle it inside MyWidget::mouseClickedEvent

Are there other options? Like somehow letting Qt framework to use 'MyWidget::pushButtonClicked()' instead of pushButton->clicked()

In the project I have many scenarios like this where such signal passing is needed from the wrapper classes like MyWidget, which wrap/abstract the UI by aggregation or inheritance. In general which is considered the best approach for better design, code reuse esp. when the project is at nascent stage and it is not known which of these UIs might need complex business logic in the future.

Please note that extending QPushButton is not an option.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

金橙橙 2024-11-23 09:12:58

您可以直接连接信号 =)

connect(pushButton , SIGNAL(clicked()), this, SIGNAL(pushButtonClicked()));

You can connect signals directly =)

connect(pushButton , SIGNAL(clicked()), this, SIGNAL(pushButtonClicked()));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文