如何在QtDesigner中实现具有动作(QAction)并且可以在设计时连接的按钮?

时间:2010-11-10 21:12:02

标签: qt qt-designer

当大多数应用程序命令保存在QActions中时,我想使用一种方法,这样我就可以轻松地将动作拖动到菜单,工具栏,按钮或其他任何内容中。 所以,我需要实现这样一个按钮。 编写一些类很容易,它会保存它,从中获取图标,文本,快捷方式和工具提示,并将clicked()连接到triggered()。 但我甚至无法将按钮的“动作”属性强加给设计师。似乎只有QVariant可保留类型可能出现在它的属性编辑器中。

BUT!巨魔以某种方式做到了,所以任务应该是可以实现的。那么,有什么建议吗?

4 个答案:

答案 0 :(得分:7)

我不确定,但我知道您有一个操作(使用 QtDesigner 创建),并且您希望将此操作与菜单,工具栏按钮和普通按钮相关联

使用 QtDesigner ,可以很容易地将QAction用作菜单项和工具栏按钮。

如果您想将此QAction与普通按钮一起使用,我猜您不能只使用 Qt Designer 来执行此操作。

我的建议是在表单上添加 QtDesigner QToolButton

在您的类构造函数中,您可以告诉QToolButton它与您的QAction setDefaultAction()连接。

ui->toolButton->setDefaultAction(ui->actionHello);

您可能需要相应地调整QToolButton的几何图形。

现在,如果点击它,就会触发行动actionHello

答案 1 :(得分:5)

只需在此处添加寻找类似解决方案的人

https://qt-project.org/wiki/PushButton_Based_On_Action

标题

#ifndef ACTIONBUTTON_H
#define ACTIONBUTTON_H

#include <QPushButton>
#include <QAction>

/*!
  *\brief An extension of a QPushButton that supports QAction.
  * This class represents a QPushButton extension that can be
  * connected to an action and that configures itself depending
  * on the status of the action.
  * When the action changes its state, the button reflects
  * such changes, and when the button is clicked the action
  * is triggered.
  */
class ActionButton : public QPushButton
{
    Q_OBJECT

private:

    /*!
      * The action associated to this button.
      */
    QAction* actionOwner;


public:
    /*!
      * Default constructor.
      * \param parent the widget parent of this button
      */
    explicit ActionButton(QWidget *parent = 0);

    /*!
      * Sets the action owner of this button, that is the action
      * associated to the button. The button is configured immediatly
      * depending on the action status and the button and the action
      * are connected together so that when the action is changed the button
      * is updated and when the button is clicked the action is triggered.
      * \param action the action to associate to this button
      */
    void setAction( QAction* action );


signals:

public slots:
    /*!
      * A slot to update the button status depending on a change
      * on the action status. This slot is invoked each time the action
      * "changed" signal is emitted.
      */
    void updateButtonStatusFromAction();


};

#endif // ACTIONBUTTON_H

#include "actionbutton.h"

ActionButton::ActionButton(QWidget *parent) :
    QPushButton(parent)
{
    actionOwner = NULL;
}

void ActionButton::setAction(QAction *action)
{

    // if I've got already an action associated to the button
    // remove all connections

    if( actionOwner != NULL && actionOwner != action ){
        disconnect( actionOwner,
                    SIGNAL(changed()),
                    this,
                    SLOT(updateButtonStatusFromAction()) );

        disconnect( this,
                    SIGNAL(clicked()),
                    actionOwner,
                    SLOT(trigger()) );
    }


    // store the action
    actionOwner = action;

    // configure the button
    updateButtonStatusFromAction();



    // connect the action and the button
    // so that when the action is changed the
    // button is changed too!
    connect( action,
             SIGNAL(changed()),
             this,
             SLOT(updateButtonStatusFromAction()));

    // connect the button to the slot that forwards the
    // signal to the action
    connect( this,
             SIGNAL(clicked()),
             actionOwner,
             SLOT(trigger()) );
}

void ActionButton::updateButtonStatusFromAction()
{
    setText( actionOwner->text() );
    setStatusTip( actionOwner->statusTip() );
    setToolTip( actionOwner->toolTip() );
    setIcon( actionOwner->icon() );
    setEnabled( actionOwner->isEnabled() );
    setCheckable( actionOwner->isCheckable() );
    setChecked( actionOwner->isChecked());

}

答案 2 :(得分:0)

Qt Designer 中,您可以手动添加连接。我想您可能希望使用普通PushButton并将按钮的clicked()信号连接到操作的trigger()广告位。

假设有一个pushButton_AddFile和一个actionAddFile。您可以在 Qt Designer Signal/Slot Editor中添加连接,如下所示:

enter image description here

答案 3 :(得分:-1)

我认为你必须实现一些特定的drop-action。 看看QtDesigner的组件是否有一些特定的Mime-Type。 任何拖放操作都必须以这种方式实现。当然不能直截了当地说出来;)