如何知道小部件当前正在 Qt Designer 中运行
我如何在自定义 Qt 小部件的代码中知道它当前已在 Qt 设计器中实例化?
用例:
我构建了一个复杂的自定义小部件,其中包含多个子小部件,例如 QPushButton、QLabel 等。
根据应用程序逻辑要求,创建小部件时,大多数子组件不可见,但在设计时我把它写在我想看到的表格上。
能够在设计时使用样式表。 目前我得到的空只是构造函数的结果 - 最小视图(在我的情况下实际上是空的)。
我正在寻找的是能够做类似的事情
MyQWidget::(QWidget *parent)
{
....
if(isRunningInDesigner())
{
myChildWidget1->setVisible(true);
myChildWidget2->setVisible(true);
myChildWidget3->setVisible(true);
}
else
{
myChildWidget1->setVisible(false);
myChildWidget2->setVisible(false);
myChildWidget3->setVisible(false);
}
....
}
那么我应该在这个 bool isRunningInDesigner() 中放入什么?
How can I in code of the custom Qt widget know that it is currently instantiated in Qt designer?
Use case:
I build a complex custom widget that has several child widgets like QPushButton, QLabel etc.
As application logic require, when widget is created most of those sub component are not visible but in design time when I put it on a form I would like to see them.
To be able to play with style sheet at design time.
Currently what I get is a empty is only a result of constructor - minimal view (actually empty in my case).
What I am looking for is to be able to do something like
MyQWidget::(QWidget *parent)
{
....
if(isRunningInDesigner())
{
myChildWidget1->setVisible(true);
myChildWidget2->setVisible(true);
myChildWidget3->setVisible(true);
}
else
{
myChildWidget1->setVisible(false);
myChildWidget2->setVisible(false);
myChildWidget3->setVisible(false);
}
....
}
So what should I put in to this bool isRunningInDesigner() ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 Qt 设计器手册< /a>:
这些是来自 QDesignerCustomWidgetInterface 插件接口的方法。简而言之:当 Qt Designer 要求您的插件创建自定义小部件的实例时,您告诉小部件以不同的方式表现。
From the Qt Designer manual:
Those are methods from the QDesignerCustomWidgetInterface plugin interface. In short: you tell the widget to behave differently when Qt Designer asks your plugin to create instances of your custom widget.