向QGraphicsScene中加入控件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了向QGraphicsScene中加入控件相关的知识,希望对你有一定的参考价值。
参考技术A 只要是 QWidget 的子类,都可以添加到 QGraphicsScene 中。为了使加入 QGraphicsScene 中的 QWidget 支持自绘,比如实现圆角效果,我将对Widget进行封装。
在 QGraphicsScene 中,使用 addItem
在此基础上,就可以实现自己的控件了。我派生 GraphicsSceneAbstractWidget ,创建自己的widget。
然后实现这个类。
最后,把这个控件加入到 QGraphicsScene 中。
e740. 向标签中加入一个图标
This example creates a JLabel
component with an icon.
// Fetch icon Icon icon = new ImageIcon("icon.gif"); // Create a label with text and an icon; the icon appears to the left of the text JLabel label = new JLabel("Text Label", icon, JLabel.CENTER); // Create a label with only an icon label = new JLabel(icon);
This example adds or replaces the icon in an existing JLabel
component:
// Add an icon to an existing label label.setIcon(icon);
The methods to control the position of the icon and text within a JLabel
component are identical to those of a JButton
. See also e747 在按钮上移动图标的位置, e748 在按钮上移动图标和标注的位置, e749 设置按钮上图标和标注的间隔, and e750 在按钮上加上不可用图标.
以上是关于向QGraphicsScene中加入控件的主要内容,如果未能解决你的问题,请参考以下文章
怎么在JTable表格中加入如JComboBox之类的控件?有注释加分。
duilib中加入自己定义控件之后怎么可以在xml文件里配置使用