summaryrefslogtreecommitdiffstats
path: root/doc/html/canvas.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/canvas.html')
-rw-r--r--doc/html/canvas.html82
1 files changed, 82 insertions, 0 deletions
diff --git a/doc/html/canvas.html b/doc/html/canvas.html
new file mode 100644
index 0000000..0b0c05f
--- /dev/null
+++ b/doc/html/canvas.html
@@ -0,0 +1,82 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/doc/canvas.doc:36 -->
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
+<title>Canvas Module</title>
+<style type="text/css"><!--
+fn { margin-left: 1cm; text-indent: -1cm; }
+a:link { color: #004faf; text-decoration: none }
+a:visited { color: #672967; text-decoration: none }
+body { background: #ffffff; color: black; }
+--></style>
+</head>
+<body>
+
+<table border="0" cellpadding="0" cellspacing="0" width="100%">
+<tr bgcolor="#E5E5E5">
+<td valign=center>
+ <a href="index.html">
+<font color="#004faf">Home</font></a>
+ | <a href="classes.html">
+<font color="#004faf">All&nbsp;Classes</font></a>
+ | <a href="mainclasses.html">
+<font color="#004faf">Main&nbsp;Classes</font></a>
+ | <a href="annotated.html">
+<font color="#004faf">Annotated</font></a>
+ | <a href="groups.html">
+<font color="#004faf">Grouped&nbsp;Classes</font></a>
+ | <a href="functions.html">
+<font color="#004faf">Functions</font></a>
+</td>
+<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Canvas Module</h1>
+
+
+
+<p>
+<p> The canvas module provides a highly optimized 2D graphic area called
+<a href="qcanvas.html">QCanvas</a>. The canvas can contain an arbitrary number of <a href="qcanvasitem.html">QCanvasItems</a>. Canvas items can have an arbitrary
+shape, size and content, can be freely moved around in the canvas,
+and can be checked for collisions. Canvas items can be set to move
+across the canvas automatically and animated canvas items are
+supported with <a href="qcanvassprite.html">QCanvasSprite</a>. (If you require 3D graphics see Qt's
+<a href="opengl.html">OpenGL module</a>.)
+<p> The canvas module uses a document/view model. The <a href="qcanvasview.html">QCanvasView</a> class
+is used to show a particular view of a canvas. Multiple views can operate
+on the same canvas at the same time. Every view can use an arbitrary
+<a href="qwmatrix.html#TransformationMode">transformation matrix</a> on the canvas which makes it easy to implement
+features such as zooming.
+<p> <center><a href="qcanvas.html">
+<img src="qcanvas.png" alt="Screenshot of a canvas"></a></center>
+<p> Qt provides a number of predefined <a href="qcanvas.html">QCanvas</a> items as listed below.
+<p> <ul>
+<li> <a href="qcanvasitem.html">QCanvasItem</a> -- An abstract base class for all canvas items.
+<li> <a href="qcanvasellipse.html">QCanvasEllipse</a> -- An ellipse or "pie segment".
+<li> <a href="qcanvasline.html">QCanvasLine</a> -- A line segment.
+<li> <a href="qcanvaspolygon.html">QCanvasPolygon</a> -- A polygon.
+<li> <a href="qcanvaspolygonalitem.html">QCanvasPolygonalItem</a> -- A base class for items that have a
+non-rectangular shape. Most canvas items derive from this class.
+<li> <a href="qcanvasrectangle.html">QCanvasRectangle</a> -- A rectangle. The rectangle cannot be tilted or
+rotated. Rotated rectangles can be drawn using QCanvasPolygon.
+<li> <a href="qcanvasspline.html">QCanvasSpline</a> -- A multi-bezier spline.
+<li> <a href="qcanvassprite.html">QCanvasSprite</a> -- An animated pixmap.
+<li> <a href="qcanvastext.html">QCanvasText</a> -- A text string.
+</ul>
+<p> The two classes <a href="qcanvaspixmap.html">QCanvasPixmap</a> and <a href="qcanvaspixmaparray.html">QCanvasPixmapArray</a> are used
+by <a href="qcanvassprite.html">QCanvasSprite</a> to show animated and moving pixmaps on the
+canvas.
+<p> More specialized items can be created by inheriting from one of the
+canvas item classes. It is easiest to inherit from one of
+<a href="qcanvasitem.html">QCanvasItem</a>'s derived classes (usually <a href="qcanvaspolygonalitem.html">QCanvasPolygonalItem</a>) rather
+than inherit QCanvasItem directly.
+<p> See <tt>examples/canvas</tt> for an example that shows off some of <a href="qcanvas.html">QCanvas</a>'s
+capabilities.
+<p>
+<!-- eof -->
+<p><address><hr><div align=center>
+<table width=100% cellspacing=0 border=0><tr>
+<td>Copyright &copy; 2007
+<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a>
+<td align=right><div align=right>Qt 3.3.8</div>
+</table></div></address></body>
+</html>