Sophie

Sophie

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

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: tictactoe.cpp Example File (designer/taskmenuextension/tictactoe.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">tictactoe.cpp Example File<br /><sup><sup>designer/taskmenuextension/tictactoe.cpp</sup></sup></h1>
<pre> /****************************************************************************
 **
 ** Copyright (C) 2005-2006 Trolltech ASA. All rights reserved.
 **
 ** This file is part of the example classes 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 &lt;QtGui&gt;

 #include &quot;tictactoe.h&quot;

 TicTacToe::TicTacToe(QWidget *parent)
     : QWidget(parent)
 {
 }

 QSize TicTacToe::minimumSizeHint() const
 {
     return QSize(200, 200);
 }

 QSize TicTacToe::sizeHint() const
 {
     return QSize(200, 200);
 }

 void TicTacToe::setState(const QString &amp;newState)
 {
     turnNumber = 0;
     for (int position = 0; position &lt; 9; ++position) {
         if (newState.at(position) != Empty)
             ++turnNumber;
     }
     myState = newState;
     update();
 }

 QString TicTacToe::state() const
 {
     return myState;
 }

 void TicTacToe::clearBoard()
 {
     myState = &quot;---------&quot;;
     turnNumber = 0;
     update();
 }

 void TicTacToe::mousePressEvent(QMouseEvent *event)
 {
     if (turnNumber == 9) {
         clearBoard();
         update();
     } else {
         for (int position = 0; position &lt; 9; ++position) {
             QRect cell = cellRect(position / 3, position % 3);
             if (cell.contains(event-&gt;pos())) {
                 if (myState.at(position) == Empty) {
                     if (turnNumber % 2 == 0)
                         myState.replace(position, 1, Cross);
                     else
                         myState.replace(position, 1, Nought);
                     ++turnNumber;
                     update();
                 }
             }
         }
     }
 }

 void TicTacToe::paintEvent(QPaintEvent * /* event */)
 {
     QPainter painter(this);
     painter.setRenderHint(QPainter::Antialiasing);

     painter.setPen(QPen(Qt::darkGreen, 1));
     painter.drawLine(cellWidth(), 0, cellWidth(), height());
     painter.drawLine(2 * cellWidth(), 0, 2 * cellWidth(), height());
     painter.drawLine(0, cellHeight(), width(), cellHeight());
     painter.drawLine(0, 2 * cellHeight(), width(), 2 * cellHeight());

     painter.setPen(QPen(Qt::darkBlue, 2));

     for (int position = 0; position &lt; 9; ++position) {
         QRect cell = cellRect(position / 3, position % 3);

         if (myState.at(position) == Cross) {
             painter.drawLine(cell.topLeft(), cell.bottomRight());
             painter.drawLine(cell.topRight(), cell.bottomLeft());
         } else if (myState.at(position) == Nought) {
             painter.drawEllipse(cell);
         }
     }

     painter.setPen(QPen(Qt::yellow, 3));

     for (int position = 0; position &lt; 9; position = position + 3) {
         if (myState.at(position) != Empty
                 &amp;&amp; myState.at(position + 1) == myState.at(position)
                 &amp;&amp; myState.at(position + 2) == myState.at(position)) {
             int y = cellRect((position / 3), 0).center().y();
             painter.drawLine(0, y, width(), y);
             turnNumber = 9;
         }
     }

     for (int position = 0; position &lt; 3; ++position) {
         if (myState.at(position) != Empty
                 &amp;&amp; myState.at(position + 3) == myState.at(position)
                 &amp;&amp; myState.at(position + 6) == myState.at(position)) {
             int x = cellRect(0, position).center().x();
             painter.drawLine(x, 0, x, height());
             turnNumber = 9;
         }
     }
     if (myState.at(0) != Empty &amp;&amp; myState.at(4) == myState.at(0)
             &amp;&amp; myState.at(8) == myState.at(0)) {
         painter.drawLine(0, 0, width(), height());
         turnNumber = 9;
     }
     if (myState.at(2) != Empty &amp;&amp; myState.at(4) == myState.at(2)
             &amp;&amp; myState.at(6) == myState.at(2)) {
         painter.drawLine(0, height(), width(), 0);
         turnNumber = 9;
     }
 }

 QRect TicTacToe::cellRect(int row, int column) const
 {
     const int HMargin = width() / 30;
     const int VMargin = height() / 30;
     return QRect(column * cellWidth() + HMargin,
                  row * cellHeight() + VMargin,
                  cellWidth() - 2 * HMargin,
                  cellHeight() - 2 * VMargin);
 }</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>