How should I use a QGraphicsScene with layouts and widgets - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T19:14:38Zhttp://stackoverflow.com/feeds/question/1038711http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1038711/how-should-i-use-a-qgraphicsscene-with-layouts-and-widgets2How should I use a QGraphicsScene with layouts and widgetsjpalecek2009-06-24T14:26:44Z2009-07-29T02:50:04Z
<p>I'm creating some graphic data displaying widget in Qt4 and I was tempted to use the <code>QGraphicsScene</code> for it, create <code>QGraphicsItem</code>s for the data items etc.</p>
<p>However, I wanted to add some layer of controls (eg. scrollbars, zoom+other buttons - I want to make it in a similar style as eg. Google Maps, that is, the data would be displayed all over the widget, and the buttons would be shown atop of them) to the widget. So I thought it might be feasible to add them to the scene (perhaps as a child of a <code>QGraphicsGroupItem</code> that would be shown over the data). But I want them to move & resize when I resize the whole widget, so I should use a <code>QGraphicsLayout</code> for managing them. But at this point, I discovered things are pretty complicated.</p>
<p>The problem is that when using <code>QGraphicsLayout</code>, the following constraints hold:</p>
<ol>
<li>Only a <code>QGraphicsWidget</code> can be managed by a layout</li>
<li><code>QGraphicsLayout</code> can only be used to manage children of a <code>QGraphicsWidget</code></li>
</ol>
<p>Which means that I would have to create my controls as <code>QGraphicsWidget</code>s, add a top level <code>QGraphicsWidget</code> to the data widget, and manage the size of this top level widget myself.</p>
<p>So I want to ask: </p>
<ol>
<li><p>Wouldn't a classic approach (ie. use plain old widgets for all controls, and use <code>QGraphicsScene</code> only for displaying the data) be more reasonable?</p></li>
<li><p>Is there any advantage in using <code>QGraphicsScene</code> in this case (performance or simplicity...)?</p></li>
<li><p>How should I use <code>QGraphicsScene</code> to exploit its strengths?</p></li>
</ol>
http://stackoverflow.com/questions/1038711/how-should-i-use-a-qgraphicsscene-with-layouts-and-widgets/1040118#10401181Answer by cjhuitt for How should I use a QGraphicsScene with layouts and widgetscjhuitt2009-06-24T18:32:54Z2009-06-24T18:32:54Z<p>If you think that <code>QGraphicsScene</code> (or whatever other widget you have) is appropriate for most of your display, use that. What we have done in the past for somewhat similar things is to make a custom widget that inherits (one way or another) from <code>QWidget</code>, and put the control widgets in a layout on top of that widget. This means that the whole widget is drawing whatever it is you want drawn, and the control widgets are on top of that, resizing as the whole widget is resized.</p>
<p>Alternatively, a couple of times we've had layouts that were just a bit too complicated for the layout widgets to easily handle. Rather than create a custom layout, we just positioned them with no layout, and moved them in code on the resize event. It works just as well.</p>
http://stackoverflow.com/questions/1038711/how-should-i-use-a-qgraphicsscene-with-layouts-and-widgets/1197751#11977512Answer by Luper Rouch for How should I use a QGraphicsScene with layouts and widgetsLuper Rouch2009-07-29T02:14:05Z2009-07-29T02:50:04Z<p>Since Qt 4.4 you can embed classic widgets in a <code>QGraphicsScene</code> by using <a href="http://doc.trolltech.com/4.4/qgraphicsproxywidget.html" rel="nofollow"><code>QGraphicsProxyWidget</code></a> :</p>
<pre><code>QWidget *widget = new QWidget;
QGraphicsScene scene;
QGraphicsProxyWidget *proxy = scene.addWidget(widget);
</code></pre>