summaryrefslogtreecommitdiffstats
path: root/src/gui/general/PixmapFunctions.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit3fcef18c75f7cd751ed706c12977230242fb817d (patch)
treea94c2497a3923ed9972e71c5bbba0697882c1427 /src/gui/general/PixmapFunctions.h
parent80ee419f074dc252449791628d4584b5c0ea0c9b (diff)
downloadrosegarden-3fcef18c75f7cd751ed706c12977230242fb817d.tar.gz
rosegarden-3fcef18c75f7cd751ed706c12977230242fb817d.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gui/general/PixmapFunctions.h')
-rw-r--r--src/gui/general/PixmapFunctions.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/general/PixmapFunctions.h b/src/gui/general/PixmapFunctions.h
index 8a84813..4564573 100644
--- a/src/gui/general/PixmapFunctions.h
+++ b/src/gui/general/PixmapFunctions.h
@@ -40,8 +40,8 @@ class PixmapFunctions
{
public:
/**
- * Generate a heuristic tqmask for the given pixmap. Unlike
- * TQPixmap::createHeuristicMask, this removes from the tqmask all
+ * Generate a heuristic mask for the given pixmap. Unlike
+ * TQPixmap::createHeuristicMask, this removes from the mask all
* pixels that are apparently "background" even if they appear in
* holes in the middle of the image. This is more usually what we
* want than the default behaviour of createHeuristicMask.
@@ -53,8 +53,8 @@ public:
static TQBitmap generateMask(const TQPixmap &map, const TQRgb &rgb);
/**
- * Generate a heuristic tqmask for the given pixmap. Unlike
- * TQPixmap::createHeuristicMask, this removes from the tqmask all
+ * Generate a heuristic mask for the given pixmap. Unlike
+ * TQPixmap::createHeuristicMask, this removes from the mask all
* pixels that are apparently "background" even if they appear in
* holes in the middle of the image. This is more usually what we
* want than the default behaviour of createHeuristicMask.
@@ -78,10 +78,10 @@ public:
*/
static TQPixmap shadePixmap(const TQPixmap &map);
- /// Return a TQPixmap that is a mirror image of map (including tqmask)
+ /// Return a TQPixmap that is a mirror image of map (including mask)
static TQPixmap flipVertical(const TQPixmap &map);
- /// Return a TQPixmap that is a mirror image of map (including tqmask)
+ /// Return a TQPixmap that is a mirror image of map (including mask)
static TQPixmap flipHorizontal(const TQPixmap &map);
/// Return left and right parts of the TQPixmap
@@ -89,12 +89,12 @@ public:
/**
* Using TQPainter::drawPixmap to draw one pixmap on another does
- * not appear to take the tqmask into account properly. Background
+ * not appear to take the mask into account properly. Background
* pixels in the second pixmap erase foreground pixels in the
* first one, regardless of whether they're masked or not. This
* function does what I expect.
*
- * Note that the source pixmap _must_ have a tqmask.
+ * Note that the source pixmap _must_ have a mask.
*/
static void drawPixmapMasked(TQPixmap &dest, TQBitmap &destMask,
int x, int y,