gpt4 book ai didi

c++ - 如何在 QWidgetAction 的子类中设置小部件的可见性

转载 作者:可可西里 更新时间:2023-11-01 18:39:50 25 4
gpt4 key购买 nike

Qt 5.6.3,eglfs Linux 平台。

我有一些从 QWidgetAction 派生的类。 QWidgetActions 都是菜单的父级,它们包含的小部件都是同一个菜单的父级。包含的小部件都被设置为 QWidgetAction 的默认小部件。 QWidgetAction 没有重新实现任何内容。

我认为设置 QWidgetAction 的可见性会自动设置其中包含的自定义小部件集的可见性?这不是真的吗,因为这样做肯定没有按要求显示和隐藏小部件!?我必须做其他事情来将可见性更改传递给包含的小部件吗?我是否必须直接从 QWidgetAction 请求小部件,然后直接对其应用可见性(这看起来像是 hack)?

我对 QWidgetActions 应该如何实现很感兴趣。文档几乎不存在,所以我尽可能地追求人们对它们的体验。我有间歇性的问题,看起来像是对自定义小部件的双重删除和可见性不正常。

class Base : public QWidgetAction
{
Q_OBJECT
public:
explicit Base(QWidget* parent, QString labelText = "", QString iconPath = "", Qt::AlignmentFlag alignment = Qt::AlignHCenter) :
QWidgetAction(parent),
mCustomWidget(nullptr),
mParentWidget(nullptr),
mTextLabel(nullptr),
mAlignment(alignment),
mLabelText(labelText),
mIconPath(iconPath) {}

virtual ~Base() {}

protected:
QWidget *mCustomWidget;

QWidget *createTheWidgetSet(QWidget *parent)
{
if (mParentWidget == nullptr) {
mParentWidget = new QWidget(parent);
mCustomWidget = createCustomWidget(mParentWidget);

if (mCustomWidget != nullptr) {
if (!mLabelText.isEmpty()) {
mCustomWidget->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Ignored);
}
}

int rightMargin = QApplication::style()->pixelMetric(QStyle::PM_SmallIconSize);

QBoxLayout* layout = new QBoxLayout(QBoxLayout::LeftToRight, mParentWidget);
layout->setContentsMargins(1, 2, rightMargin, 2);
if (!mLabelText.isEmpty()) {
QString some_calced_text{};
mTextLabel = new QLabel(some_calced_text, mParentWidget);
layout->addWidget(mTextLabel);
} else {
if(mAlignment == Qt::AlignLeft){
int some_calced_val{20};
layout->addSpacing(some_calced_val);
}
}

if(mAlignment == Qt::AlignRight){
layout->addStretch();
}

layout->addWidget(mCustomWidget);

if(mAlignment == Qt::AlignLeft){
layout->addStretch();
}
}

setDefaultWidget(mParentWidget);

return mCustomWidget;
}

virtual QWidget *createCustomWidget(QWidget *parent) = 0;

private:
Q_DISABLE_COPY(Base)

QWidget *mParentWidget;
QLabel *mTextLabel;
Qt::AlignmentFlag mAlignment;
QString mLabelText;
QString mIconPath;
};

class SpinBoxActionWidget : public Base
{
Q_OBJECT
public:
explicit SpinBoxActionWidget(QWidget* parent, QString labelText = "", QString iconPath = "") :
Base(parent, labelText, iconPath),
mSpinBox(nullptr)
{
createTheWidgetSet(parent);
}

virtual ~SpinBoxActionWidget() {}

QSpinBox* getSpinBox() const
{
return mSpinBox;
}

protected:
QWidget *createCustomWidget(QWidget *parent) override
{
if (mSpinBox == nullptr) {
mSpinBox = new QSpinBox(parent);
mSpinBox->setFixedHeight(22);
}

return mSpinBox;
}

private:
Q_DISABLE_COPY(SpinBoxActionWidget)

QSpinBox *mSpinBox;
};

/* Elsewhere in code.... */
{
QMenu theMenu = new QMenu(parentWindow);
SpinBoxActionWidget theAct = new SpinBoxActionWidget(theMenu);
SpinBoxActionWidget theSecondAct = new SpinBoxActionWidget(theMenu);

theMenu->addAction(theAct);
theMenu->addAction(theSecondAct);

/* I now assume that I can do this, and the entire entry in the menu
* represented by "theAct" can be made visible and invisible.
* This doesn't work however, either the widget remains visible,
* or is partially hidden.
theAct->setVisible(true);
theAct->setVisible(false);
*/
}

最佳答案

您没有重新实现接口(interface),这就是它不起作用的原因。

首先,请注意 QWidgetAction 派生自 QAction不是 QWidget;但是,它确实有一个setVisible() 函数,该函数实际上只是将调用转发给该操作创建的所有小部件。

您必须重新实现 QWidgetAction::createWidget(parent) 才能添加新的小部件;您的 createCustomWidget 没有做任何有用的事情。这是一个非常简单的例子:

class SpinAction : public QWidgetAction
{
Q_OBJECT
public:
SpinAction(QObject* parent) : QWidgetAction(parent) {}
virtual ~SpinAction() {}
QWidget* createWidget(QWidget* parent) { return new QSpinBox(parent); }
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// reimplement this function
};

您可以将您的操作添加到您想要的任何容器、菜单、工具栏等...此示例将为每个容器创建一个新的小部件,并且这些创建的小部件不会同步(例如在旋转框值上)。

我刚刚在主窗口中对其进行了测试,将小部件操作添加到菜单和工具栏,并且调用 setVisible() 可以完美运行。

关于c++ - 如何在 QWidgetAction 的子类中设置小部件的可见性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48316599/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com