diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
commit | f008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch) | |
tree | 8e9244c4d4957c36be81e15b566b4aa5ea26c982 /krita/doc/selections | |
parent | 1210f27b660efb7b37ff43ec68763e85a403471f (diff) | |
download | koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip |
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'krita/doc/selections')
-rw-r--r-- | krita/doc/selections | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/krita/doc/selections b/krita/doc/selections index 4db934fc..65def462 100644 --- a/krita/doc/selections +++ b/krita/doc/selections @@ -5,7 +5,7 @@ class and the associated rectangular marque rendering code. If you find anything connected with that after I finish coding the new selections scheme, it's something I forgot. -Selections in Krita are special paint devices as big as their parent +Selections in Krita are special paint devices as big as their tqparent layer. The selection has the alpha colour strategy. The alpha channel contains the selectedness of a pixel. It is not a binary value, but a scale, hardcoded to 8 bits unsigned @@ -34,7 +34,7 @@ selected. Values in between are semi selected Other representations of selections are possible: the selection for a particular rect is rendered as a separate step in -KisImage::renderToProjection. I like the mask type rendering, but +KisImage::renderToProjection. I like the tqmask type rendering, but someone else might want to provide an optional marque-rendering. TODO: * enable kconfig option to select between renderings. @@ -74,7 +74,7 @@ Use cases: fills (gradient, pattern, color), filtering. Fills are easiest implemented by creating a filled paint device for the rect covered by the selection, and then, while composting the fill -with the target layer, pass the mask to the compositing loop, and skip +with the target layer, pass the tqmask to the compositing loop, and skip un-selected pixels. XXX: Discuss whether this is true @@ -117,7 +117,7 @@ discarded. If a transform is applied to a image, all layers are transformed. The selection is transformed, too: in the new situation, the layer that has a -selection active still has a selection, but the shape of the selection is +selection active still has a selection, but the tqshape of the selection is transformed. If a layer is moved, the selection moves with the layer (this is not |