summaryrefslogtreecommitdiffstats
path: root/doc/html/canvas.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-31 11:32:43 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-31 11:59:34 +0900
commit68b81013e8668f50fc18b7e26a520ec93a7a1251 (patch)
treed6d15d07cb34e5443a10b71f91adee1473906263 /doc/html/canvas.html
parent1702a6daff27f5d3e6fdac16962d1828df6ca270 (diff)
downloadtqt3-68b81013e8668f50fc18b7e26a520ec93a7a1251.tar.gz
tqt3-68b81013e8668f50fc18b7e26a520ec93a7a1251.zip
Rename nt* canvas related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/canvas.html')
-rw-r--r--doc/html/canvas.html38
1 files changed, 19 insertions, 19 deletions
diff --git a/doc/html/canvas.html b/doc/html/canvas.html
index e40bafdd..8df99f85 100644
--- a/doc/html/canvas.html
+++ b/doc/html/canvas.html
@@ -35,41 +35,41 @@ body { background: #ffffff; color: black; }
<p>
<p> The canvas module provides a highly optimized 2D graphic area called
-<a href="ntqcanvas.html">TQCanvas</a>. The canvas can contain an arbitrary number of <a href="qcanvasitem.html">TQCanvasItems</a>. Canvas items can have an arbitrary
+<a href="tqcanvas.html">TQCanvas</a>. The canvas can contain an arbitrary number of <a href="tqcanvasitem.html">TQCanvasItems</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">TQCanvasSprite</a>. (If you require 3D graphics see TQt's
+supported with <a href="tqcanvassprite.html">TQCanvasSprite</a>. (If you require 3D graphics see TQt's
<a href="opengl.html">OpenGL module</a>.)
-<p> The canvas module uses a document/view model. The <a href="qcanvasview.html">TQCanvasView</a> class
+<p> The canvas module uses a document/view model. The <a href="tqcanvasview.html">TQCanvasView</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="ntqwmatrix.html#TransformationMode">transformation matrix</a> on the canvas which makes it easy to implement
features such as zooming.
-<p> <center><a href="ntqcanvas.html">
-<img src="qcanvas.png" alt="Screenshot of a canvas"></a></center>
-<p> TQt provides a number of predefined <a href="ntqcanvas.html">TQCanvas</a> items as listed below.
+<p> <center><a href="tqcanvas.html">
+<img src="tqcanvas.png" alt="Screenshot of a canvas"></a></center>
+<p> TQt provides a number of predefined <a href="tqcanvas.html">TQCanvas</a> items as listed below.
<p> <ul>
-<li> <a href="qcanvasitem.html">TQCanvasItem</a> -- An abstract base class for all canvas items.
-<li> <a href="qcanvasellipse.html">TQCanvasEllipse</a> -- An ellipse or "pie segment".
-<li> <a href="qcanvasline.html">TQCanvasLine</a> -- A line segment.
-<li> <a href="qcanvaspolygon.html">TQCanvasPolygon</a> -- A polygon.
-<li> <a href="qcanvaspolygonalitem.html">TQCanvasPolygonalItem</a> -- A base class for items that have a
+<li> <a href="tqcanvasitem.html">TQCanvasItem</a> -- An abstract base class for all canvas items.
+<li> <a href="tqcanvasellipse.html">TQCanvasEllipse</a> -- An ellipse or "pie segment".
+<li> <a href="tqcanvasline.html">TQCanvasLine</a> -- A line segment.
+<li> <a href="tqcanvaspolygon.html">TQCanvasPolygon</a> -- A polygon.
+<li> <a href="tqcanvaspolygonalitem.html">TQCanvasPolygonalItem</a> -- A base class for items that have a
non-rectangular shape. Most canvas items derive from this class.
-<li> <a href="qcanvasrectangle.html">TQCanvasRectangle</a> -- A rectangle. The rectangle cannot be tilted or
+<li> <a href="tqcanvasrectangle.html">TQCanvasRectangle</a> -- A rectangle. The rectangle cannot be tilted or
rotated. Rotated rectangles can be drawn using TQCanvasPolygon.
-<li> <a href="qcanvasspline.html">TQCanvasSpline</a> -- A multi-bezier spline.
-<li> <a href="qcanvassprite.html">TQCanvasSprite</a> -- An animated pixmap.
-<li> <a href="qcanvastext.html">TQCanvasText</a> -- A text string.
+<li> <a href="tqcanvasspline.html">TQCanvasSpline</a> -- A multi-bezier spline.
+<li> <a href="tqcanvassprite.html">TQCanvasSprite</a> -- An animated pixmap.
+<li> <a href="tqcanvastext.html">TQCanvasText</a> -- A text string.
</ul>
-<p> The two classes <a href="qcanvaspixmap.html">TQCanvasPixmap</a> and <a href="qcanvaspixmaparray.html">TQCanvasPixmapArray</a> are used
-by <a href="qcanvassprite.html">TQCanvasSprite</a> to show animated and moving pixmaps on the
+<p> The two classes <a href="tqcanvaspixmap.html">TQCanvasPixmap</a> and <a href="tqcanvaspixmaparray.html">TQCanvasPixmapArray</a> are used
+by <a href="tqcanvassprite.html">TQCanvasSprite</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">TQCanvasItem</a>'s derived classes (usually <a href="qcanvaspolygonalitem.html">TQCanvasPolygonalItem</a>) rather
+<a href="tqcanvasitem.html">TQCanvasItem</a>'s derived classes (usually <a href="tqcanvaspolygonalitem.html">TQCanvasPolygonalItem</a>) rather
than inherit TQCanvasItem directly.
-<p> See <tt>examples/canvas</tt> for an example that shows off some of <a href="ntqcanvas.html">TQCanvas</a>'s
+<p> See <tt>examples/canvas</tt> for an example that shows off some of <a href="tqcanvas.html">TQCanvas</a>'s
capabilities.
<p>
<!-- eof -->