Sophie

Sophie

distrib > CentOS > 5 > x86_64 > by-pkgid > ac91357d6caede925de099a02fced14e > files > 1957

qt4-doc-4.2.1-1.el5_7.1.x86_64.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.2: chip.cpp Example File (demos/chip/chip.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://www.trolltech.com/products/qt"><img src="images/qt-logo.png" align="left" width="32" height="32" 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="mainclasses.html"><font color="#004faf">Main&nbsp;Classes</font></a>&nbsp;&middot; <a href="groups.html"><font color="#004faf">Grouped&nbsp;Classes</font></a>&nbsp;&middot; <a href="modules.html"><font color="#004faf">Modules</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">Functions</font></a></td>
<td align="right" valign="top" width="230"><a href="http://www.trolltech.com"><img src="images/trolltech-logo.png" align="right" width="203" height="32" border="0" /></a></td></tr></table><h1 align="center">chip.cpp Example File<br /><sup><sup>demos/chip/chip.cpp</sup></sup></h1>
<pre> /****************************************************************************
 **
 ** Copyright (C) 2005-2006 Trolltech ASA. All rights reserved.
 **
 ** This file is part of the demonstration applications of the Qt Toolkit.
 **
 ** This file may be used under the terms of the GNU General Public
 ** License version 2.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 GNU
 ** General Public Licensing requirements will be met:
 ** http:<span class="comment">//www.trolltech.com/products/qt/opensource.html</span>
 **
 ** If you are unsure which license is appropriate for your use, please
 ** review the following information:
 ** http:<span class="comment">//www.trolltech.com/products/qt/licensing.html or contact the</span>
 ** sales department at sales@trolltech.com.
 **
 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 **
 ****************************************************************************/

 #include &quot;chip.h&quot;

 #include &lt;QtGui&gt;

 Chip::Chip(const QColor &amp;color, int x, int y)
 {
     this-&gt;x = x;
     this-&gt;y = y;
     this-&gt;color = color;
     setZValue((x + y) % 2);

     setFlags(ItemIsSelectable | ItemIsMovable);
     setAcceptsHoverEvents(true);
 }

 QRectF Chip::boundingRect() const
 {
     return QRectF(0, 0, 110, 70);
 }

 QPainterPath Chip::shape() const
 {
     QPainterPath path;
     path.addRect(14, 14, 82, 42);
     return path;
 }

 void Chip::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
 {
     Q_UNUSED(widget);

     QColor fillColor = (option-&gt;state &amp; QStyle::State_Selected) ? Qt::black : color;
     if (option-&gt;state &amp; QStyle::State_MouseOver)
         fillColor = fillColor.light(125);

     if (option-&gt;levelOfDetail &lt; 0.2) {
         if (option-&gt;levelOfDetail &lt; 0.125) {
             painter-&gt;fillRect(QRectF(0, 0, 110, 70), fillColor);
             return;
         }

         painter-&gt;setPen(QPen(Qt::black, 0));
         painter-&gt;setBrush(fillColor);
         painter-&gt;drawRect(13, 13, 97, 57);
         return;
     }

     QPen oldPen = painter-&gt;pen();
     QPen pen = oldPen;
     int width = 0;
     if (option-&gt;state &amp; QStyle::State_Selected)
         width += 2;

     pen.setWidth(width);
     painter-&gt;setPen(pen);
     painter-&gt;setBrush(QBrush(fillColor.dark(option-&gt;state &amp; QStyle::State_Sunken ? 120 : 100)));

     painter-&gt;drawRect(QRect(14, 14, 79, 39));
     if (option-&gt;levelOfDetail &gt;= 1) {
         painter-&gt;setPen(QPen(Qt::gray, 1));
         painter-&gt;drawLine(15, 54, 94, 54);
         painter-&gt;drawLine(94, 53, 94, 15);
     }
     painter-&gt;setPen(oldPen);

     if (option-&gt;levelOfDetail &gt;= 2) {
         <span class="comment">// Draw text</span>
         QFont font(&quot;Times&quot;, 10);
         font.setStyleStrategy(QFont::ForceOutline);
         painter-&gt;setFont(font);
         painter-&gt;setRenderHint(QPainter::TextAntialiasing, false);
         painter-&gt;save();
         painter-&gt;scale(0.1, 0.1);
         painter-&gt;drawText(170, 180, QString(&quot;Model: VSC-2000 (Very Small Chip) at %1x%2&quot;).arg(x).arg(y));
         painter-&gt;drawText(170, 200, QString(&quot;Serial number: DLWR-WEER-123L-ZZ33-SDSJ&quot;));
         painter-&gt;drawText(170, 220, QString(&quot;Manufacturer: Chip Manufacturer&quot;));
         painter-&gt;restore();
     }
     if (option-&gt;levelOfDetail &gt;= 0.5) {
         <span class="comment">// Draw lines</span>
         for (int i = 0; i &lt;= 10; i += (option-&gt;levelOfDetail &gt; 0.5 ? 1 : 2)) {
             painter-&gt;drawLine(18 + 7 * i, 13, 18 + 7 * i, 5);
             painter-&gt;drawLine(18 + 7 * i, 54, 18 + 7 * i, 62);
         }
         for (int i = 0; i &lt;= 6; i += (option-&gt;levelOfDetail &gt; 0.5 ? 1 : 2)) {
             painter-&gt;drawLine(5, 18 + i * 5, 13, 18 + i * 5);
             painter-&gt;drawLine(94, 18 + i * 5, 102, 18 + i * 5);
         }
     }
     if (option-&gt;levelOfDetail &gt;= 0.4) {
         painter-&gt;setPen(oldPen);
         painter-&gt;drawLine(25, 35, 35, 35);
         painter-&gt;drawLine(35, 30, 35, 40);
         painter-&gt;drawLine(35, 30, 45, 35);
         painter-&gt;drawLine(35, 40, 45, 35);
         painter-&gt;drawLine(45, 30, 45, 40);
         painter-&gt;drawLine(45, 35, 55, 35);
     }

     painter-&gt;setPen(QPen(Qt::red, 1, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin));
     painter-&gt;setBrush(Qt::NoBrush);
     QPainterPath path;
     if (stuff.size() &gt; 1) {
         path.moveTo(stuff.first());
         for (int i = 1; i &lt; stuff.size(); ++i)
             path.lineTo(stuff.at(i));
         painter-&gt;drawPath(path);
     }
 }

 void Chip::mousePressEvent(QGraphicsSceneMouseEvent *event)
 {
     QGraphicsItem::mousePressEvent(event);
     update();
 }

 void Chip::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
 {
     if (event-&gt;modifiers() &amp; Qt::ShiftModifier) {
         stuff &lt;&lt; event-&gt;pos();
         update();
         return;
     }
     QGraphicsItem::mouseMoveEvent(event);
 }

 void Chip::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
 {
     QGraphicsItem::mouseReleaseEvent(event);
     update();
 }</pre>
<p /><address><hr /><div align="center">
<table width="100%" cellspacing="0" border="0"><tr class="address">
<td width="30%">Copyright &copy; 2006 <a href="trolltech.html">Trolltech</a></td>
<td width="40%" align="center"><a href="trademarks.html">Trademarks</a></td>
<td width="30%" align="right"><div align="right">Qt 4.2.1</div></td>
</tr></table></div></address></body>
</html>