Developer Documentation
QtGLViewerLayout.cc
1 /*===========================================================================*\
2 * *
3 * OpenFlipper *
4  * Copyright (c) 2001-2015, RWTH-Aachen University *
5  * Department of Computer Graphics and Multimedia *
6  * All rights reserved. *
7  * www.openflipper.org *
8  * *
9  *---------------------------------------------------------------------------*
10  * This file is part of OpenFlipper. *
11  *---------------------------------------------------------------------------*
12  * *
13  * Redistribution and use in source and binary forms, with or without *
14  * modification, are permitted provided that the following conditions *
15  * are met: *
16  * *
17  * 1. Redistributions of source code must retain the above copyright notice, *
18  * this list of conditions and the following disclaimer. *
19  * *
20  * 2. Redistributions in binary form must reproduce the above copyright *
21  * notice, this list of conditions and the following disclaimer in the *
22  * documentation and/or other materials provided with the distribution. *
23  * *
24  * 3. Neither the name of the copyright holder nor the names of its *
25  * contributors may be used to endorse or promote products derived from *
26  * this software without specific prior written permission. *
27  * *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS *
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED *
30  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
31  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER *
32  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, *
33  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, *
34  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR *
35  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF *
36  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING *
37  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS *
38  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
39 * *
40 \*===========================================================================*/
41 
42 /*===========================================================================*\
43 * *
44 * $Revision$ *
45 * $LastChangedBy$ *
46 * $Date$ *
47 * *
48 \*===========================================================================*/
49 
50 
51 
52 
53 //=============================================================================
54 //
55 // CLASS QtGLViewerLayout - IMPLEMENTATION
56 //
57 //=============================================================================
58 
59 //== INCLUDES =================================================================
60 
61 #include "QtGLViewerLayout.hh"
62 
63 //== NAMESPACES ===============================================================
64 
65 
66 //== CLASS IMPLEMENTATION======================================================
67 
68 QtGLViewerLayout::QtGLViewerLayout (QGraphicsLayoutItem * _parent) :
69  QGraphicsLayout (_parent),
70  wheelX_ (0),
71  wheelY_ (0),
72  wheelZ_ (0)
73 {
74 }
75 
76 //-----------------------------------------------------------------------------
77 
78 void QtGLViewerLayout::addWheelX (QGraphicsWidget *_item)
79 {
80  if (wheelX_)
81  items_.remove(items_.indexOf(wheelX_));
82  wheelX_ = _item;
83  items_.append(_item);
84 }
85 
86 //-----------------------------------------------------------------------------
87 
88 void QtGLViewerLayout::addWheelY (QGraphicsWidget *_item)
89 {
90  if (wheelY_)
91  items_.remove(items_.indexOf(wheelY_));
92  wheelY_ = _item;
93  items_.append(_item);
94 }
95 
96 //-----------------------------------------------------------------------------
97 
98 void QtGLViewerLayout::addWheelZ (QGraphicsWidget *_item)
99 {
100  if (wheelZ_)
101  items_.remove(items_.indexOf(wheelZ_));
102  wheelZ_ = _item;
103  items_.append(_item);
104 }
105 
106 //-----------------------------------------------------------------------------
107 
109 {
110  return items_.size();
111 }
112 
113 //-----------------------------------------------------------------------------
114 
115 QGraphicsLayoutItem * QtGLViewerLayout::itemAt(int _i) const
116 {
117  if (_i < 0 || _i >= items_.size())
118  return 0;
119 
120  return items_[_i];
121 }
122 
123 //-----------------------------------------------------------------------------
124 
125 void QtGLViewerLayout::removeAt (int _index)
126 {
127  if (_index < 0 || _index >= items_.size())
128  return;
129 
130  if (items_[_index] == wheelX_)
131  wheelX_ = 0;
132  if (items_[_index] == wheelY_)
133  wheelY_ = 0;
134  if (items_[_index] == wheelZ_)
135  wheelZ_ = 0;
136 
137  items_.remove(_index);
138 }
139 
140 //-----------------------------------------------------------------------------
141 
142 QSizeF QtGLViewerLayout::sizeHint(Qt::SizeHint /*_which*/, const QSizeF & _constraint) const
143 {
144  return _constraint;
145 }
146 
147 //-----------------------------------------------------------------------------
148 
149 void QtGLViewerLayout::setGeometry(const QRectF & rect)
150 {
151  QGraphicsLayoutItem::setGeometry (rect);
152  reLayout ();
153 }
154 
155 //-----------------------------------------------------------------------------
156 
158 {
159  if (!wheelX_ || !wheelY_ || !wheelZ_)
160  return;
161 
162  QRectF r = contentsRect ();
163  float scale = qMin(300.0, qMin(r.width(), r.height())) / 300.0;
164 
165  foreach (QGraphicsWidget *item, items_)
166  {
167  if (item->size() != item->preferredSize ())
168  item->resize (item->preferredSize ());
169  item->resetTransform();
170  item->setScale (scale);
171  }
172 
173  wheelX_->setPos (r.left(),
174  r.bottom() - ((wheelY_->size().height() + wheelX_->size().height()) * scale));
175  wheelY_->setPos (r.left() + (wheelX_->size().width() * scale),
176  r.bottom() - (wheelY_->size().height() * scale));
177  wheelZ_->setPos (r.right() - (wheelZ_->size().width() * scale),
178  r.bottom() - ((wheelY_->size().height() + wheelZ_->size().height()) * scale));
179 }
180 
181 
182 //=============================================================================
183 //=============================================================================
virtual void setGeometry(const QRectF &rect)
Tracks geometry changes.
virtual int count() const
Pure virtual functions that have to be implemented.
void addWheelX(QGraphicsWidget *_item)
Add Wheel Widget to Layout.
void reLayout()
Recalculate layout.