Sophie

Sophie

distrib > Mandriva > current > i586 > media > main-updates > by-pkgid > 8e6051afcdb111a0317a58fb64c2abf5 > files > 948

qt4-doc-4.6.3-0.2mdv2010.2.i586.rpm

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title>Qt 4.6: main.cpp Example File (graphicsview/weatheranchorlayout/main.cpp)</title>
  <link href="classic.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="left" valign="top" width="32"><a href="http://qt.nokia.com/"><img src="images/qt-logo.png" align="left" border="0" /></a></td>
<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">All&nbsp;Functions</font></a>&nbsp;&middot; <a href="overviews.html"><font color="#004faf">Overviews</font></a></td></tr></table><h1 class="title">main.cpp Example File<br /><span class="small-subtitle">graphicsview/weatheranchorlayout/main.cpp</span>
</h1>
<pre><span class="comment"> /****************************************************************************
 **
 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
 ** All rights reserved.
 ** Contact: Nokia Corporation (qt-info@nokia.com)
 **
 ** This file is part of the examples of the Qt Toolkit.
 **
 ** $QT_BEGIN_LICENSE:LGPL$
 ** Commercial Usage
 ** Licensees holding valid Qt Commercial licenses may use this file in
 ** accordance with the Qt Commercial License Agreement provided with the
 ** Software or, alternatively, in accordance with the terms contained in
 ** a written agreement between you and Nokia.
 **
 ** GNU Lesser General Public License Usage
 ** Alternatively, this file may be used under the terms of the GNU Lesser
 ** General Public License version 2.1 as published by the Free Software
 ** Foundation and appearing in the file LICENSE.LGPL included in the
 ** packaging of this file.  Please review the following information to
 ** ensure the GNU Lesser General Public License version 2.1 requirements
 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 **
 ** In addition, as a special exception, Nokia gives you certain additional
 ** rights.  These rights are described in the Nokia Qt LGPL Exception
 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 **
 ** GNU General Public License Usage
 ** Alternatively, this file may be used under the terms of the GNU
 ** General Public License version 3.0 as published by the Free Software
 ** Foundation and appearing in the file LICENSE.GPL included in the
 ** packaging of this file.  Please review the following information to
 ** ensure the GNU General Public License version 3.0 requirements will be
 ** met: http://www.gnu.org/copyleft/gpl.html.
 **
 ** If you have questions regarding the use of this file, please contact
 ** Nokia at qt-info@nokia.com.
 ** $QT_END_LICENSE$
 **
 ****************************************************************************/</span>

 #include &lt;QLabel&gt;
 #include &lt;QPainter&gt;
 #include &lt;QPushButton&gt;
 #include &lt;QApplication&gt;

 #include &lt;QGraphicsView&gt;
 #include &lt;QGraphicsScene&gt;
 #include &lt;QGraphicsWidget&gt;
 #include &lt;QGraphicsProxyWidget&gt;
 #include &lt;QGraphicsAnchorLayout&gt;
 #include &lt;QGraphicsSceneResizeEvent&gt;

 class PixmapWidget : public QGraphicsLayoutItem
 {

 public:
     PixmapWidget(const QPixmap &amp;pix) : QGraphicsLayoutItem()
     {
         original = new QGraphicsPixmapItem(pix);
         setGraphicsItem(original);
         original-&gt;show();
         r = QRectF(QPointF(0, 0), pix.size());
     }

     ~PixmapWidget()
     {
         setGraphicsItem(0);
         delete original;
     }

     void setZValue(qreal z)
     {
         original-&gt;setZValue(z);
     }

     void setGeometry (const QRectF &amp;rect)
     {
         original-&gt;scale(rect.width() / r.width(), rect.height() / r.height());
         original-&gt;setPos(rect.x(), rect.y());
         r = rect;
     }

 protected:
     QSizeF sizeHint(Qt::SizeHint which, const QSizeF &amp;constraint = QSizeF()) const
     {
         Q_UNUSED(constraint);
         QSizeF sh;
         switch (which) {
             case Qt::MinimumSize:
                 sh = QSizeF(0, 0);
                 break;
             case Qt::PreferredSize:
                 sh = QSizeF(50, 50);
                 break;
             case Qt::MaximumSize:
                 sh = QSizeF(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX);
                 break;
         }
          return sh;
     }

 private:
     QGraphicsPixmapItem *original;
     QRectF r;
 };

 class PlaceWidget : public QGraphicsWidget
 {
     Q_OBJECT

 public:
     PlaceWidget(const QPixmap &amp;pix) : QGraphicsWidget(), original(pix), scaled(pix)
     {
     }

     void paint(QPainter *painter, const QStyleOptionGraphicsItem*, QWidget*)
     {
         QPointF reflection = QPointF();
         reflection.setY(scaled.height() + 2);

         painter-&gt;drawPixmap(QPointF(), scaled);

         QPixmap tmp(scaled.size());
         tmp.fill(Qt::transparent);
         QPainter p(&amp;tmp);

         <span class="comment">// create gradient</span>
         QPoint p1(scaled.width() / 2, 0);
         QPoint p2(scaled.width() / 2, scaled.height());
         QLinearGradient linearGrad(p1, p2);
         linearGrad.setColorAt(0, QColor(0, 0, 0, 0));
         linearGrad.setColorAt(0.65, QColor(0, 0, 0, 127));
         linearGrad.setColorAt(1, QColor(0, 0, 0, 255));

         <span class="comment">// apply 'mask'</span>
         p.setBrush(linearGrad);
         p.fillRect(0, 0, tmp.width(), tmp.height(), QBrush(linearGrad));
         p.fillRect(0, 0, tmp.width(), tmp.height(), QBrush(linearGrad));

         <span class="comment">// paint the image flipped</span>
         p.setCompositionMode(QPainter::CompositionMode_DestinationOver);
         p.drawPixmap(0, 0, QPixmap::fromImage(scaled.toImage().mirrored(false, true)));
         p.end();

         painter-&gt;drawPixmap(reflection, tmp);
     }

     void resizeEvent(QGraphicsSceneResizeEvent *event)
     {
         QSize newSize = event-&gt;newSize().toSize();
         newSize.setHeight(newSize.height() / 2);
         scaled = original.scaled(newSize);
     }

     QRectF boundingRect() const
     {
         QSize size(scaled.width(), scaled.height() * 2 + 2);
         return QRectF(QPointF(0, 0), size);
     }

 private:
     QPixmap original;
     QPixmap scaled;
 };

 static QGraphicsProxyWidget *createItem(const QString &amp;name = &quot;Unnamed&quot;)
 {
     QGraphicsProxyWidget *w = new QGraphicsProxyWidget;
     w-&gt;setWidget(new QPushButton(name));
     w-&gt;setData(0, name);
     w-&gt;setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
     return w;
 }

 int main(int argc, char **argv)
 {
     Q_INIT_RESOURCE(weatheranchorlayout);

     QApplication app(argc, argv);

     QGraphicsScene scene;
     scene.setSceneRect(0, 0, 800, 480);

     <span class="comment">// pixmaps widgets</span>
     PixmapWidget *title = new PixmapWidget(QPixmap(&quot;:/images/title.jpg&quot;));
     PlaceWidget *place = new PlaceWidget(QPixmap(&quot;:/images/place.jpg&quot;));
     PixmapWidget *details = new PixmapWidget(QPixmap(&quot;:/images/5days.jpg&quot;));
     PixmapWidget *sunnyWeather = new PixmapWidget(QPixmap(&quot;:/images/weather-few-clouds.png&quot;));
     PixmapWidget *tabbar = new PixmapWidget(QPixmap(&quot;:/images/tabbar.jpg&quot;));

     <span class="comment">// setup sizes</span>
     title-&gt;setPreferredSize(QSizeF(348, 45));
     title-&gt;setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);

     place-&gt;setPreferredSize(QSizeF(96, 72));
     place-&gt;setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);

     details-&gt;setMinimumSize(QSizeF(200, 112));
     details-&gt;setPreferredSize(QSizeF(200, 112));
     details-&gt;setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);

     tabbar-&gt;setPreferredSize(QSizeF(70, 24));
     tabbar-&gt;setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);

     sunnyWeather-&gt;setPreferredSize(QSizeF(128, 97));
     sunnyWeather-&gt;setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
     sunnyWeather-&gt;setZValue(9999);

     <span class="comment">// start anchor layout</span>
     QGraphicsAnchorLayout *l = new QGraphicsAnchorLayout;
     l-&gt;setSpacing(0);

     <span class="comment">// setup the main widget</span>
     QGraphicsWidget *w = new QGraphicsWidget(0, Qt::Window);
     QPalette p;
     p.setColor(QPalette::Window, Qt::black);
     w-&gt;setPalette(p);
     w-&gt;setPos(20, 20);
     w-&gt;setLayout(l);

     <span class="comment">// vertical anchors</span>
     QGraphicsAnchor *anchor = l-&gt;addAnchor(title, Qt::AnchorTop, l, Qt::AnchorTop);
     anchor = l-&gt;addAnchor(place, Qt::AnchorTop, title, Qt::AnchorBottom);
     anchor-&gt;setSpacing(12);
     anchor = l-&gt;addAnchor(place, Qt::AnchorBottom, l, Qt::AnchorBottom);
     anchor-&gt;setSpacing(12);

     anchor = l-&gt;addAnchor(sunnyWeather, Qt::AnchorTop, title, Qt::AnchorTop);
     anchor = l-&gt;addAnchor(sunnyWeather, Qt::AnchorBottom, l, Qt::AnchorVerticalCenter);

     anchor = l-&gt;addAnchor(tabbar, Qt::AnchorTop, title, Qt::AnchorBottom);
     anchor-&gt;setSpacing(5);
     anchor = l-&gt;addAnchor(details, Qt::AnchorTop, tabbar, Qt::AnchorBottom);
     anchor-&gt;setSpacing(2);
     anchor = l-&gt;addAnchor(details, Qt::AnchorBottom, l, Qt::AnchorBottom);
     anchor-&gt;setSpacing(12);

     <span class="comment">// horizontal anchors</span>
     anchor = l-&gt;addAnchor(l, Qt::AnchorLeft, title, Qt::AnchorLeft);
     anchor = l-&gt;addAnchor(title, Qt::AnchorRight, l, Qt::AnchorRight);

     anchor = l-&gt;addAnchor(place, Qt::AnchorLeft, l, Qt::AnchorLeft);
     anchor-&gt;setSpacing(15);
     anchor = l-&gt;addAnchor(place, Qt::AnchorRight, details, Qt::AnchorLeft);
     anchor-&gt;setSpacing(35);

     anchor = l-&gt;addAnchor(sunnyWeather, Qt::AnchorLeft, place, Qt::AnchorHorizontalCenter);
     anchor = l-&gt;addAnchor(sunnyWeather, Qt::AnchorRight, l, Qt::AnchorHorizontalCenter);

     anchor = l-&gt;addAnchor(tabbar, Qt::AnchorHorizontalCenter, details, Qt::AnchorHorizontalCenter);
     anchor = l-&gt;addAnchor(details, Qt::AnchorRight, l, Qt::AnchorRight);

     <span class="comment">// QGV setup</span>
     scene.addItem(w);
     scene.setBackgroundBrush(Qt::white);
     QGraphicsView *view = new QGraphicsView(&amp;scene);
     view-&gt;show();

     return app.exec();
 }

 #include &quot;main.moc&quot;</pre>
<p /><address><hr /><div align="center">
<table width="100%" cellspacing="0" border="0"><tr class="address">
<td width="40%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
<td width="20%" align="center"><a href="trademarks.html">Trademarks</a></td>
<td width="40%" align="right"><div align="right">Qt 4.6.3</div></td>
</tr></table></div></address></body>
</html>